Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
PHP code
Message
From
01/11/2016 20:25:18
 
 
To
01/11/2016 06:55:27
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
01642585
Message ID:
01642617
Views:
59
>I'm using VFP9 with MySQL database, I want to write a simple PHP to retrieve the data.
>
>What is the PHP code for this:
>
>user inputs 'stockid', and gets the return value 'stock name'
>input => stockid
>query => select stockname from stockdata where stockcode=stockid
>output => stockname
>
>thanks for the help
>
>Jerry

Here is some code from a running PHP app.
queryDB is a MYSQLPDO function
    $query = "SELECT storecode FROM store WHERE storecode=:storecode AND PW=:PW";
    $params = array("storecode"=>$user,"PW"=>$password);
     $stores = $db->queryDB($query,$params);
Anyone who does not go overboard- deserves to.
Malcolm Forbes, Sr.
Previous
Reply
Map
View

Click here to load this message in the networking platform