Davie33 Posted March 27, 2014 Share Posted March 27, 2014 How do i fix this for seo yes ?. Normally my url would be http://www.yoursite.com/profile.html for seo yes. How do i add &delete with $row['id'] added so user can delete account ?. if ($setting['seo'] == 'yes'){ echo '<a href="'.$setting['siteurl'].'profile.html" title="Are you sure you want to delete your account ?." style="text-decoration:none;color:#333;">Detele Account?</a>'; } else { echo '<a href="'.$setting['siteurl'].'index.php?act=profile&delete='.$row['id'].'" title="Are you sure you want to delete your account ?." style="text-decoration:none;color:#333;">Detele Account?</a>'; } Quote Link to comment https://forums.phpfreaks.com/topic/287348-seo-problem/ Share on other sites More sharing options...
trq Posted March 28, 2014 Share Posted March 28, 2014 I'm not sure where people get the idea that query strings are no good for seo. Quote Link to comment https://forums.phpfreaks.com/topic/287348-seo-problem/#findComment-1474232 Share on other sites More sharing options...
Davie33 Posted March 28, 2014 Author Share Posted March 28, 2014 I have recoded my file and done the delete account with a submit imput but abit lost on what to do to get it working. The imput is near bottom of file. My post above was a bad idea. Everything else works apart from delete button. profile.php <div id="center"><div class="container_box1"><div id="headergames2">Edit Profile</div><?phpif(isset($_SESSION["user"])) {$user=$_SESSION["user"];} else {echo '<div class="containbox2">';echo '<enter>Not logged in!</center>';echo '</div><div class="clear"></div></div>';include ("footer.php");exit;}if(isset($_POST['settings'])) {$website = yasDB_clean($_POST['website']);$name = yasDB_clean($_POST['name']);$email = yasDB_clean($_POST['email']);$location = yasDB_clean($_POST['location']);$job = yasDB_clean($_POST['job']);$aboutme = yasDB_clean($_POST['aboutme']);$hobbies = yasDB_clean($_POST['hobbies']);$shhobs = yasDB_clean($_POST['shhobs']);$cmtsdisabled = yasDB_clean($_POST['cmtsdisabled']);$shloc = yasDB_clean($_POST['shloc']);$sheml = yasDB_clean($_POST['sheml']);$shname = yasDB_clean($_POST['shname']);yasDB_update("UPDATE user SET website = '$website', name = '$name', email = '$email', location='$location', job='$job', aboutme='$aboutme', hobbies='$hobbies', shhobs='$shhobs', cmtsdisabled='$cmtsdisabled', shloc='$shloc', sheml='$sheml', shname='$shname' WHERE username = '$user'"); if(!empty($_POST['password'])) {$password = md5(yasDB_clean($_POST['password']));yasDB_update("UPDATE user SET password = '$password' WHERE username = '$user'");}echo '<META HTTP-EQUIV="Refresh" CONTENT="0; URL=index.php?act=profile">';} else {$query = yasDB_select("SELECT * FROM `user` WHERE username = '$user'");$row = $query->fetch_array(MYSQLI_ASSOC);echo ' <div class="containbox2"><div id="preview"></div><div id="profileBox"><form name="usersettings" id="profile" method="post" action="index.php?act=profile"><table class="tg"> <tr> <th class="tg-s6z2" colspan="4">'.$user.'s Profile:</th> </tr> <tr> <td class="tg-vn4c">Name:</td> <td class="tg-vn4c"><input type="text" name="name" value="' . $row['name'] . '" size="30" /></td> <td class="tg-vn4c">Email:</td> <td class="tg-vn4c"><input type="text" name="email" value="' . $row['email'] . '" size="30" /></td> </tr> <tr> <td class="tg-0ord">Website:(Remember the http://)</td> <td class="tg-0ord"><input type="text" name="website" value="' . $row['website'] . '" size="30" /></td> <td class="tg-Oord">Location:</td> <td class="td-Oord"><input type="text" name="location" value="' . $row['location'] . '" size="30" /></td> </tr> <tr> <th class="tg-s6z2" colspan="4">About Me:</th> </tr> <tr> <td class="tg-vn4c" colspan="1">Interests:</td> <td class="tg-vn4c" colspan="3"><textarea name="aboutme" rows="8" cols="50">'. $row['aboutme'] . '</textarea></td> </tr> <tr> <td class="tg-Oord" colspan="1">Hobbies:</td> <td class="tg-Oord" colspan="3"><textarea name="hobbies" rows="8" cols="50">'. $row['hobbies'] . '</textarea></td> </tr> <tr> <th class="tg-s6z2" colspan="4">Settings:</th> </tr> <tr> <td class="tg-vn4c">Profile Comments:</td> <td class="tg-vn4c"> <select name="cmtsdisabled"> <option value="'.$row['cmtsdisabled'].'"/>'.$row['cmtsdisabled'].'</option> <option value="hidden">Hidden</option> <option value="show">Show</option> </select> </td> <td class="tg-vn4c">Location:</td> <td class="tg-vn4c"> <select name="shloc"> <option value="'.$row['shloc'].'"/>'.$row['shloc'].'</option> <option value="hidden">Hidden</option> <option value="show">Show</option> </select> </td> </tr> <tr> <td class="tg-Oord">Email:</td> <td class="tg-Oord"> <select name="sheml"> <option value="'.$row['sheml'].'"/>'.$row['sheml'].'</option> <option value="hidden">Hidden</option> <option value="show">Show</option> </select> </td> <td class="tg-Oord">Name:</td> <td class="tg-Oord"> <select name="shname"> <option value="'.$row['shname'].'"/>'.$row['shname'].'</option> <option value="hidden">Hidden</option> <option value="show">Show</option> </select> </td> </tr> <tr> <td class="tg-vn4c">Hobbies:</td> <td class="tg-vn4c"> <select name="shhobs"> <option value="'.$row['shhobs'].'"/>'.$row['shhobs'].'</option> <option value="hidden">Hidden</option> <option value="show">Show</option> </select> </td> <td class="tg-vn4c">About Me:</td> <td class="tg-vn4c"> <select name="shabout"> <option value="'.$row['shabout'].'"/>'.$row['shabout'].'</option> <option value="hidden">Hidden</option> <option value="show">Show</option> </select> </td> <tr>';if ($row['oauth_provider'] == "" || empty($row['oauth_provider'])) {echo '<td class="tg-Oord">Password:(leave blank if no change)</td> <td class="tg-Oord"><input type="text" name="password" /></td> <td class="tg-Oord"></td> <td class="tg-Oord"></td>';} echo ' </tr> <tr> <th class="tg-s6z2" colspan="4">Update Account:</th> </tr> <tr> <td class="tg-vn4c" colspan="2">Update:</td> <td class="tg-vn4c" colspan="2"><input type="submit" name="settings" value="Update" /></td> </tr> <tr> <th class="tg-s6z2" colspan="4">Delete Account:</th> </tr> <tr> <td class="tg-vn4c" colspan="2">Click on link if you wish to delete your account.</td> <td class="tg-vn4c"colspan="2"><input type="submit" name="settings" value="Delete Account" title="Are you sure you want to delete your account?"/> </tr> </table> </form> </div></div>';$query->close();}?><div class="clear"></div></div> Quote Link to comment https://forums.phpfreaks.com/topic/287348-seo-problem/#findComment-1474255 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.