
January 31st, 2012, 08:44 AM
|
 |
SQL Consultant
|
|
Join Date: Feb 2003
Location: Toronto Canada
|
|
okay, in that case, what you need to know is that you will take the url, analyze it with your application language, and enter the values into the database something like this ---
Code:
INSERT
INTO TableA ( Onum , Balance )
VALUES ( '$onum' , '$balance' )
here $onum and $balance are variables that are created by your application language which has analyzed the url and pulled out the appropriate values
that's how can be done 
|