Jump to content

insert ID in query


techker

Recommended Posts

Hey guys i have this pagination script that im using and i need to add a specific user to it.so it does not select every thing from the databse but only the user loggin.

 

SELECT COUNT(*) as num FROM $tbl_name WHERE Date = (SELECT MAX( date ) FROM $tbl_name

 

need to add `Dealer_ID`=$ID

 

thx!!

Link to comment
https://forums.phpfreaks.com/topic/199005-insert-id-in-query/
Share on other sites

If you had just thought about this for about 2 seconds longer you probably would have had it.

SELECT COUNT(*) as num FROM $tbl_name WHERE Date = (SELECT MAX( date ) FROM $tbl_name where `Dealer_ID`=$ID   

but you'll want to escape the $tbl_name and $ID  with mysql_real_escape_string

 

Link to comment
https://forums.phpfreaks.com/topic/199005-insert-id-in-query/#findComment-1044564
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.