Jump to content

floridaflatlander

Members
  • Posts

    671
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by floridaflatlander

  1. Hmm.. I would actually recommend against using absolute paths, as they tend to make it more difficult to transport scripts between systems.

    If you have a relative path, and move servers, you don't have to do anything. Seeing as the path structure is the same within the scope of the page, but the path outside of your web root will (most likely) be completely different. You might have to adjust the URL between sites, but that's also true for absolute paths in that case.

     

     

    .... so I changed it to "$home/member/index.php"  And $home depending on if I was on my computer or online.

     

    $home can change and alllows for an absolute path change

  2. Yeah, I don't do I like that so you're going to have to play with it.

     

    Try

     

    echo "<p>".htmlspecialchars($radio_info['now_playing']['artist'] . ' - ' . $radio_info['now_playing']['track'])."</p>";

    echo "<p>".htmlspecialchars($radio_info['listeners'])."</p>";

  3. Well the above should work, about a year ago I had my redirect as

     

    header("Location: ../member/index.php"); // or what ever

    exit();

     

    and was told by the powers here to have a absolute paths in my redirects so I changed it to "$home/member/index.php"  And $home depending on if I was on my computer or online.

  4. so here is my code:

    <?php
    if(!isset($_POST['submit']))
    {
    $ToEmail = 'ndneasystems@yahoo.com';
    $EmailSubject = 'Pitanje sa ndnea.com';
    $mailheader = "From :". $_POST["email"]. "\r\n";
    $mailheader .= "Reply to :". $_POST["email"]. "\r\n";
    $mailheader .= "Ova poruka sadrzi pitanje postavljeno na www.ndnea.com \r\n";
    $MESSAGE_BODY = "Ime : " .$_POST["name"]." \r\n";
    $MESSAGE_BODY .= "Email : " .nl2br($_POST["email"])." \r\n";
    $MESSAGE_BODY .= "Naslov : " .$_POST["subject"]." \r\n";
    $MESSAGE_BODY .= "Poruka : " .nl2br($_POST["feedback"])." \r\n";
    mail($ToEmail, $EmailSubject, $MESSAGE_BODY, $mailheader) or die ("Failure"); 
    echo  "Vasa poruka je uspjesno poslana! Kliknite <a href=\"index.html\">ovde</a> za pocetnu stranu ";
    
    header("Location: $home/member/index.php"); // or what ever
    exit();
    
    };
    ?>

  5. php processes from top to bottom.

     

    I'd do something like this but it probably has some errors

     

    <?php
    require_once('_coreFunctions.php'); // this is where DB functions are e.g. connection etc
    require_once('_signInFunctions.php');
    
    $displayForm = true;
    $error = "";
    $username = "";
    
    if(isset($_POST['signInSubmit']))
    {
    	$username = mysqli_real_escape_string(cf_dbConnect(), $_POST['username']);
    	$password = mysqli_real_escape_string(cf_dbConnect(), $_POST['password']);
    
    	$query = mysqli_query(cf_dbConnect(), "call sp_checkLoginDetails('{$username}', '{$password}')");
    	if(mysqli_num_rows($query) == 1)
    	{
    		$_SESSION['isLoggedIn'] = true;
    		while($row = mysqli_fetch_object($query))
    		{
    			$_SESSION['firstName'] = $row->firstName;
    		}
    		mysqli_query(cf_dbConnect(), "call sp_updateLoginDateTime('{$_SESSION['firstName']}')");
    		header("Location: ."); // this is my redirect part
    	}
    	else
    	{
    		$error = "<div id=\"formMessages\">Username or Password is incorrect. Please try again.</div>";
    
    		if($username == "username...")
    		{
    			$username = "";
    		}
    	}
    
    }
    
    require_once('header.php'); // this has HTML inside of it e.g. head tag etc
    ?>
    <div id="contentBoxWrapper">
    <div id="contentBoxTop">
    <div id="contentBoxTopInner"><a href="/" class="firstLink">Home</a> <span class="breadcrumbDivider">></span> Sign In<hr /></div>
    </div>
    <div id="contentBoxContent">
    <div id="signInFormWrapper">
    <h1>Sign In</h1>
    <?php if (isset($error)) {echo $error;} ?>
    <form name=\"signInForm\" id=\"signInForm\" method=\"post\" action=\"\">
    <label for=\"username\">Username:</label><br />
    <input type=\"text\" name=\"username\" id=\"signInFormUsername\" class=\"formField\" value=\"{$username}\" /><br /><br />
    <label for=\"password\">Password:</label><br />
    <input type=\"password\" name=\"password\" id=\"signInFormPassword\" class=\"formField\" /><br /><br />
    <input type=\"submit\" id=\"signInSubmit\" name=\"signInSubmit\" value=\"Login\" />
    </form>
      <br />
    <a href="resetpassword">Forgotten password?</a>
    </div>
    </div>
    <div id="contentBoxBottom"></div>
    </div>
    <?php require_once('footer.php'); ?>
    
    

  6. Play with it some,

     

    and

     

    I'd take everything out of the function until you get more experience. Also I'd put the register on one page and login in on another page.

     

    Keep playing if you have, if you haven't just play with it, it's really simple if you put the register & login on two pages. Once you see whats happening you can combine them.

  7. forget about the register form at the moment, it has no bearing on what I am trying to achieve.

     

    yes does because you're calling the header on the register form. I don't think you know enough to make that statement. Like I said ...

     

    I'd take everything out of the function until you get more experience. Also I'd put the register on one page and login in on another page.

  8. Is this someone else's code?

     

    Play with it some,

    
    $displayForm = true;
    $error = "";
    $username = "";
    
    if(isset($_POST['signInSubmit']))
    {
    	$username = mysqli_real_escape_string(cf_dbConnect(), $_POST['username']);
    	$password = mysqli_real_escape_string(cf_dbConnect(), $_POST['password']);
    
    	$query = mysqli_query(cf_dbConnect(), "call sp_checkLoginDetails('{$username}', '{$password}')");
    	if(mysqli_num_rows($query) == 1)
    	{
    		$_SESSION['isLoggedIn'] = true;
    		while($row = mysqli_fetch_object($query))
    		{
    			$_SESSION['firstName'] = $row->firstName;
    		}
    		mysqli_query(cf_dbConnect(), "call sp_updateLoginDateTime('{$_SESSION['firstName']}')");
    		header("Location: ."); // this is the point where the headers are already sent I know why this happens, need an alternative way 
    	}
    	else
    	{
    		$error = "<div id=\"formMessages\">Username or Password is incorrect. Please try again.</div>";
    
    	}
    
    }
    
    if($displayForm)
    {
    
    require_once('header.php'); 
    	echo "
    		<form name=\"signInForm\" id=\"signInForm\" method=\"post\" action=\"\">
    				<label for=\"username\">Username:</label><br />
    				<input type=\"text\" name=\"username\" id=\"signInFormUsername\" class=\"formField\" value=\"{$username}\" /><br /><br />
    				<label for=\"password\">Password:</label><br />
    				<input type=\"password\" name=\"password\" id=\"signInFormPassword\" class=\"formField\" /><br /><br />
    				<input type=\"submit\" id=\"signInSubmit\" name=\"signInSubmit\" value=\"Login\" />
    		</form>
    		<br />
    		{$error}
    	";
    }
    

  9. Thanks for the reply

     

    If your project is deployed on linux server, you can use only "\n".

     

    My project is deployed on a linex server

     

    So I changed it to

    echo '<p>'.str_replace("\r\n", "</p>\n<p>", $descrip).'</p>';

    and the strings look like I want it to look, like this

     

    <p>String is here</p>

     

    .......... can I use "\r\n" just as will as "\n" and it not come back and bite me (put everything in one big paragraph)?

     

     

    Once again I want my string to look like this <p>String is here</p>. And this is how I get it ... echo '<p>'.str_replace("\r\n", "</p>\n<p>", $descrip).'</p>';

     

    So can I use "\r\n" just as will as "\n" and it not come back and bite me (put everything in one big paragraph)?

     

×
×
  • 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.