[SOLVED] Passing my variable, help please

This is a discussion on "[SOLVED] Passing my variable, help please" within the PHP Forum section. This forum, and the thread "[SOLVED] Passing my variable, help please are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old Feb 12th, 2005, 13:37
Anonymous User
Guest
Posts: n/a
[SOLVED] Passing my variable, help please

Hi:

I am trying to get my unique ID number sent to my show_post.cgi program and it doesn't work. I get the variable name (unique_customer_id) but never the actual value. Can someone please help me with this.

TIA






#! /usr/bin/perl
print "Content-type: text/html", "\n\n";

read(STDIN,$input,$ENV{'CONTENT_LENGTH'});

print <<'EOF';
<html>
<head>
<title>Tracking Number</title>


</head>

EOF
$unique_customer_id = $$ . "-" . time();
print "$unique_customer_id";
print <<'EOF';

<body>

<form action="cgi-bin/show_post.cgi" method="post">

<input type="hidden" name="idnumber" value="$unique_customer_id">

</body>
</html>
</body>
</html>
EOF

Closed Thread

Tags
passing, variable, help

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] passing variables to mysql eon201 PHP Forum 3 Nov 16th, 2007 08:07
[SOLVED] ASP Session Variable Monie Classic ASP 7 Oct 10th, 2007 02:44
Variable passing VanderBOOM JavaScript Forum 20 Nov 2nd, 2006 21:39
Passing a Variable to ASP Smog36 Flash & Multimedia Forum 1 Sep 13th, 2006 14:05
Passing form variable between pages rhoov Classic ASP 8 Dec 16th, 2003 14:59


All times are GMT. The time now is 18:46.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43