Reply
delete sql record
Old 09-21-2006, 12:39 PM delete sql record
atomicshockwave's Avatar
Experienced Talker

Posts: 38
hi i have a php script that pulls data from a sql database,
each time it querys the database it pulls 1 entry from each of the 3 fields.

how can I delet just the one set of records?

I tryed using

PHP Code:
$delete DELETE FROM `$username`
WHERE id='4'
however, this requiers me to state the id to be deleated, but i need it to just deleate whatever information was just pulled.

please help!!!!!!!!
atomicshockwave is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
Old 09-21-2006, 03:01 PM Re: delete sql record
Novice Talker

Posts: 8
Quote:
Originally Posted by atomicshockwave View Post
hi i have a php script that pulls data from a sql database,
each time it querys the database it pulls 1 entry from each of the 3 fields.

how can I delet just the one set of records?

I tryed using

PHP Code:
$delete DELETE FROM `$username`
WHERE id='4'
however, this requiers me to state the id to be deleated, but i need it to just deleate whatever information was just pulled.

please help!!!!!!!!
What is the name of the table? First of all you dont have quotes around your statement. But here is what i how i would do.
PHP Code:
$result=mysql_query("DELETE FROM `username` WHERE `id`='4'"); 
rjbrock is offline
Reply With Quote
View Public Profile
 
Old 09-23-2006, 02:45 PM Re: delete sql record
chrishirst's Avatar
Super Moderator

Posts: 15,326
Location: Blackpool. UK
If ID is numeric you should NOT have single quotes around it
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
Indifference will be the downfall of mankind, but who cares?
Code Samples | People Counting System | Bits & Bobs
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Reply     « Reply to delete sql record
 

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Webmaster Resources Marketplace:
Software Development Company | Webhosting.UK.com | Text Link Brokers 


   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 


Page generated in 0.11881 seconds with 12 queries