Go Back   SitePoint Forums > Forum Index > Manage Your Site > Scripts and Online Services
Newsletter FAQ Members List Calendar Mark Forums Read

New to SitePoint Forums? Register here for free!

SitePoint Sponsor
 
Reply
 
Thread Tools Display Modes
Old Nov 22, 2009, 05:36   #1
dougvcd
SitePoint Addict
 
Join Date: Jun 2007
Location: Plymouth uk
Posts: 284
looking for simple delete record from db

looking for a simple script
that you login with email addy and shows your record then press button to delete record
cheers
Doug
dougvcd is offline   Reply With Quote
Old Nov 22, 2009, 11:23   #2
Tim Mousel
SitePoint Enthusiast
 
Join Date: Aug 2005
Location: Houston, TX
Posts: 65
This works great:
http://www.phpmyadmin.net/home_page/index.php
Tim Mousel is offline   Reply With Quote
Old Nov 22, 2009, 14:16   #3
dougvcd
SitePoint Addict
 
Join Date: Jun 2007
Location: Plymouth uk
Posts: 284
sorry i didnt make myself to clear
when peeps re on my site the details go in database so if they want to delete there details
they login with email addy then delete there details
hope this makes it a bit clearer
cheers
Doug
this is what i have so far
they login and get sent to this page
PHP Code:

<?php


include("connectdb.php");

$rResult = mysql_query(
   
sprintf(        
   
"SELECT * FROM register WHERE email = '%s' LIMIT 1",        
   
mysql_real_escape_string($_POST['myemail'])    
   )
   );
   if(
1 !== mysql_num_rows($rResult))
   {    
   
header('Location: http://www.lostpetsplymouth.com/wrong.php');    
   exit;
   }

$aRecord = mysql_fetch_assoc($rResult);
printf(    
   
'
    
    <strong>Type:</strong>%s<br />    
    <strong>State:</strong>%s<br />    
    <strong>Area:</strong>%s<br />    
    <strong>Description:</strong>%s<br />        
     <strong>ID:</strong>%s<br />
    '
    
,
    
$aRecord['type'],    
    
$aRecord['state'],    
    
$aRecord['area'],    
    
$aRecord['desc'],        
    
$aRecord['ID']
    
);


?>
<p> This is your Record Details if you want to Delete press here<p>
</body>

Last edited by dougvcd; Nov 22, 2009 at 14:18. Reason: more info
dougvcd is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread | Next Thread »

Thread Tools
Display Modes

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Sponsored Links
 
Forum Jump


All times are GMT -7. The time now is 22:02.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Copyright 1998-2009, SitePoint Pty Ltd. All Rights Reserved