Hi there

I have a database called "Eric" and table name called "Rocket'.

Table consists of three values.
PARTNO | DESCRIPTION | COMMENT

So far if i want to show copper headgaskets from the 5r field i put this
string into the php script (along with the rest of the html/php code)

$sql = "SELECT * FROM rocket WHERE partno like '5r%' AND description like
'COPPER HEADGASKET%'";

The problem is there is 1000s of different querys i want to run and dont
want to make a page for each query. So what im trying to ask is how do i run
a query to display the results (like http://www.domain.com/query.php?"the
query i want to run" rather then link to a .php/html file with the query
inside of it.)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to