- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Problems with HTTP forms
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 09:50 AM
12-18-2002 09:50 AM
Problems with HTTP forms
I use Apache Web server 2.0.43 on A-class servers with HP-UX 11.00.When I "execute" htlm form (for example i want to give login and password for connecting on a database), i can't transmit variables values in other script: when i make a echo, i have nothing in variable.
I use the two methods (post and get) and i test with I.E and Netscape navigator.
Thanks for help.
JMB
(PS: The php and htlp scripts work well on a MS Windows system)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 10:05 AM
12-18-2002 10:05 AM
Re: Problems with HTTP forms
can you give an example of
your script ?
Do you use the QUERY_STRING var or
$* ?
rgds.
Steven
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 11:26 AM
12-18-2002 11:26 AM
Re: Problems with HTTP forms
If I were going to pass information from a web form to a web server, I would use a form who's action is to call a servlet. In the servlet, I would do an HttpServletRequest.getParameter("formInputFieldName") to get the value.
Goto Oreilly.com and search for Servlet Programming for information on how to program servlets.
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 01:26 PM
12-18-2002 01:26 PM
Re: Problems with HTTP forms
If you attach the http doc and the program it calls, I can try and help.
My method is a post, executing a perl script which uses the chop command to parse the variables.
Take a look here for a site that uses the information to pass data:
http://www.investmenttool.com
Its got one field for stock symbols, you press the go button and bingo, data gets passed.
Its just the only example I can give you on the pubic Internet.
It is possible, I can provide examples if you find them relavent.
Steve
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2002 03:03 AM
12-19-2002 03:03 AM
Re: Problems with HTTP forms
The var. formProfil, formLogin, and formPwd don't pass to Faire_authentification.php script
Thanks
JMB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2002 08:31 AM
12-19-2002 08:31 AM
Re: Problems with HTTP forms
We use the $var syntax and it's not good on some Unix platforms. We must use the $HTTP_POST_VARS['var'] syntax. This work on all platforms but it's hard job to change all scripts. If you have a best solution?
Thanks.
JMB