If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > PHP > php question?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-25-10, 07:15
nevin nevin is offline
Registered User
 
Join Date: Mar 2010
Posts: 8
php question?

How do you get information from a form that is submitted using the "get" method?
Reply With Quote
  #2 (permalink)  
Old 03-25-10, 11:53
futurity futurity is offline
Registered User
 
Join Date: May 2008
Posts: 270
Documentation and Google are your friends.
Reply With Quote
  #3 (permalink)  
Old 03-25-10, 14:55
kitaman kitaman is offline
Papabi's friend
 
Join Date: Sep 2009
Location: Ontario
Posts: 629
assume: http://xxx.xxx.xxx.xxx/proc.php?ref=12345

proc.php
<?php
$REMOTE_ADDR = $_SERVER['REMOTE_ADDR'];

$RECNO = $_SERVER['QUERY_STRING'];
$RECNO = `echo $RECNO |cut -d"=" -f2`;
$RECNO = rtrim($RECNO);
Reply With Quote
  #4 (permalink)  
Old 03-26-10, 00:31
nevin nevin is offline
Registered User
 
Join Date: Mar 2010
Posts: 8
thanks for the solution
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On