![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Newbie
Join Date: Oct 2004
Posts: 1
Rep Power: 0
![]() |
okay i tried using cookies, not gonna work, i tried cgi and asp....not gonna work...and i just tried sql data base (which btw is realllllllly complicated) alll i want to do is make it so i people can type in some info, and its displayed on antother page. IS that SO much TO ask FOR?????? I mean you think with computers now a days you could just say <input type="text" name="name" sendto=datebase1"><retreive (1,1) name> or something easy like that. I DONT KNOW, IM AT A LOSS FOR WORDS PLEASE HELP ME OUT...
|
|
|
|
|
|
#2 |
|
The Supreme Ruler
![]() Join Date: May 2004
Location: Houston
Posts: 1,476
Rep Power: 6
![]() |
~Moved
__________________
"Every gun that is made, every warship launched, every rocket signifies, in the final sense, a theft from those who hunger and are not fed, from those who are cold and are not clothed. The world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children." - Dwight D. Eisenhower |
|
|
|
|
|
#3 |
|
Programming Guru
![]() ![]() ![]() |
Does this mean you want this in PHP?
__________________
http://jasonpowers.net "There are a thousand hacking at the branches of evil to one who is striking at the root." |
|
|
|
|
|
#4 |
|
Programming Guru
![]() |
HTML code:
must have in somewhere <form name="name" method="get" action="page2.php"> Input name: <input type="text" name="uName" /> </form> create a page2.php and put into it this. $_GET["uName"]; // produces teh text string from the previous page. or if using a java servlet/jsp page its request.getParameter("uName"); for any of the other just look up GET and POST methods for the equivilant language.
__________________
"Put your hand on a hot stove for a minute, and it seems like an hour. Sit with a pretty girl for an hour, and it seems like a minute. THAT'S relativity." - Albert Einstein |
|
|
|
|
|
#5 |
|
Programming Guru
![]() ![]() ![]() |
Good example Berto
![]()
__________________
http://jasonpowers.net "There are a thousand hacking at the branches of evil to one who is striking at the root." |
|
|
|
|
|
#6 |
|
Programming Guru
![]() |
Calm down man, everyone has computer problems :-p Thats what this site is here for. Just come ask a question, and it will be answered. No need to be frustrated. And if it doesnt work, ask another question, and it will be answered.
<?php
// Universal POST or GET display...
$blah = ((isset($_POST))?$_POST:((isset($_GET))?$_GET:-1));
if($blah == -1) die("No data sent from forms..");
foreach($blah as $col => $val)
echo "<b>{$col}:</b> {$val}<br>";
?>Just save that to a .php and post data to it from a form and it will display it.
__________________
|
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|