ChrisPHP Posted December 29, 2012 Share Posted December 29, 2012 Hey all, Hope your doing all fine... Ok my next idea is that I have this page that it contains a content. Whenever i click something in menu it loads the proper page inside the content. But when I click a button with the method POST it redirects the whole page and not the content only. I want to display if a driver is successfully added or not inside the same page!! Code of Admin.php: include("Conx.php"); if(isset($_POST['AName']) && isset($_POST['CEOName'])&& isset($_POST['Address']) && isset($_POST['AEmail']) && isset($_POST['ATel'])){ $target = "images/"; $target = $target . basename( $_FILES['AImage']['name']); $an=$_POST['AName']; $cn=$_POST['CEOName']; $a=$_POST['Address']; $ae=$_POST['AEmail']; $at=$_POST['ATel']; $file=$_FILES['AImage']['tmp_name']; $sql="INSERT INTO agence(agID,nom_loueur,adresse,email,tel,AImage)values('".$an."','".$cn."','".$a."','".$ae."','".$at."','".$file."')"; if(move_uploaded_file($_FILES['AImage']['tmp_name'], $target)){ $res=mysql_query($sql) or die(mysql_error()); header('location: ../Admin.php?add'); }else{ echo "<html><font size='4' color='white'><b>Can't insert..</b></font></html>"; } } and in the main page Admin.php added: if(isset($_GET['add'])) { echo "<html><center><font size='4' color='white'><b>Successfuly added!!</b></font></center></html>"; }else{ echo"<html><center><font size='4' color='white'><b>Welcome to Admin's page!!</b></font></center></html>"; } I know that this way gives the result on Admin.php and not inside the content in page chosen... Thanks in advance Quote Link to comment https://forums.phpfreaks.com/topic/272492-loading-a-part-of-a-page-without-refreshing/ Share on other sites More sharing options...
pcroarkin Posted January 7, 2013 Share Posted January 7, 2013 You will need to use AJAX and DOM (document object model). Are you familiar with either? If not, the answer could be long and complicated but I will try to help. Quote Link to comment https://forums.phpfreaks.com/topic/272492-loading-a-part-of-a-page-without-refreshing/#findComment-1403819 Share on other sites More sharing options...
cpd Posted January 7, 2013 Share Posted January 7, 2013 I'm not sure what your definition of "driver" is but it sounds like you want to test if content is loaded? You can use jQuery as it simplifies things - may be overkill for one task though - or alternatively write a small object to create the request etc. Can't really help other than that as you've not attempted anything. Quote Link to comment https://forums.phpfreaks.com/topic/272492-loading-a-part-of-a-page-without-refreshing/#findComment-1403909 Share on other sites More sharing options...
ChrisPHP Posted January 7, 2013 Author Share Posted January 7, 2013 Well this topic is somehow old, i did solve my problem eventually.. I used jquery and a lot of debugging and managed to work out my idea Thanks anyways Quote Link to comment https://forums.phpfreaks.com/topic/272492-loading-a-part-of-a-page-without-refreshing/#findComment-1403952 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.