I am sending two data to my php from my javascript:
http://forum.research.bell-labs.com/zeeshan/publication/phpwithmysql11111.php?rowid=BL09.00001,0
1) BL09.00001
2) 0
How do I recognize them separately in my php?
I was trying to do:
$job=$_GET[rowid];
echo($job);
this gives me both the fields.
I’d say you need to name the second parameter as well as the first in your GET request.
Use a URL like this: http://forum…../phpwithmysql11111.php?rowid=BL09.00001&other=1
Then, $_GET[‘rowid’] should be BL09.00001 and $_GET[‘other’] should be 1.