Jump to content

[SOLVED] PHP HELP


Recommended Posts

With something like http://yousite.com/[email protected] you could do the following:

 

page.php

$email = $_GET['email'];
mysql_connect('somehost', 'user', 'pass');
mysql_select_db('somedatabase');
mysql_query("INSERT INTO emailists (`stixy`) VALUES ('{$email}');") or die('Unable to insert the data');

Link to comment
https://forums.phpfreaks.com/topic/62361-solved-php-help/#findComment-310351
Share on other sites

you could try having the link something like:

<a href="http://mydomain.com/mypage.php?insert=1

then:

<?php
if(isset($_GET['insert'] && $_GET['insert'] == '1'){
    //sql query here
}

 

If the user is logged in you should be able to get their email address somehow.. is it stored in a session?

Link to comment
https://forums.phpfreaks.com/topic/62361-solved-php-help/#findComment-310359
Share on other sites

you're code should look something like this:

<?php
if(isset($_GET['insert'] && $_GET['insert'] == '1'){
    $sql = "INSERT INTO `emailists` (`stixy`) VALUE ('" . $username . "')";
        if($sqlres = mysql_query($sql)){
            echo 'email address added';
        }else{
            echo mysql_error();
        }
}
?>

 

with the link:

<a href="http://mydomain.com/mypage.php?insert=1

Link to comment
https://forums.phpfreaks.com/topic/62361-solved-php-help/#findComment-310365
Share on other sites

My code is

<?php include 'header.php';  // Works.


?>
<div id="content">
<div id="columnsC"><br/>
	<a href="http://www.stixy.com"><img  style="border:0;" src="siteimg/stixy.jpg" alt="stixy"/></a><Br/>
<p>Stixy helps users organize their world on flexible, shareable Web-based bulletin boards called Stixyboards. Unlike most personal productivity or project management software, Stixy doesn't dictate how users should organize their information. Users can create tasks, appointments, files, photos, notes, and bookmarks on their Stixyboards, organized in whatever way makes sense to them. Then they can share Stixyboards with friends, family, and colleagues.</p>
</div>
<div id="columnsD">
<?
/**
* User has already logged in, so display relavent links
*/
if($session->logged_in){
$dbh=mysql_connect ("localhost", "my_username", "my_pass") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("my_db"); 
echo "<ul>";
if(isset($_GET['insert'] && $_GET['insert'] == '1'){
    $sql = "INSERT INTO `emailists` (`stixy`) VALUE ('" . $username . "')";
        if($sqlres = mysql_query($sql)){
            echo 'email address added';
        }else{
            echo mysql_error();
        }
}
  $sql = "SELECT stixy FROM emailists";
  if ($result = mysql_query($sql)) {
    if (mysql_num_rows($result)) {
      while ($row = mysql_fetch_assoc($result)) {
        echo "<li>";  echo $row['stixy'] . "</li>";
        
      }
    }
  }
echo "</ul>";

}
else{
?>
<br/>
<p style="border-style: solid;
border-width: 3px;"><b>To Invite people or add yourself to the list you need to either login or if you dont have an account signup</b></p>

<?
}
?>

</div>



<?php include 'sidebar.php'; ?>
<div style="clear: both;"> </div>
</div>
<?php include 'footer.php';  // Works.


?>

Link to comment
https://forums.phpfreaks.com/topic/62361-solved-php-help/#findComment-310493
Share on other sites

change this part:

if(isset($_GET['insert'] && $_GET['insert'] == '1'){
    $sql = "INSERT INTO `emailists` (`stixy`) VALUE ('" . $username . "')";
        if($sqlres = mysql_query($sql)){
            echo 'email address added';
        }else{
            echo mysql_error();
        }
}

 

to this:

if(isset($_GET['insert']) && $_GET['insert'] == '1'){
    $sql = "INSERT INTO `emailists` (`stixy`) VALUE ('" . $username . "')";
        if($sqlres = mysql_query($sql)){
            echo 'email address added';
        }else{
            echo mysql_error();
        }
}

you had a missed out ) after the isset()

Link to comment
https://forums.phpfreaks.com/topic/62361-solved-php-help/#findComment-310496
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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