Shout Box Help

Pages: 1, 2
free web hosting
Free Web Hosting, No Ads > CONTRIBUTE > Computers > Database

Shout Box Help

sonesay
This whole block in your original code would never return true since its $submit is not defined in PHP yet.
CODE
if($submit)
{
...
}


So you can either change it so you define $submit before its used or just change $submit to $_POST['submit']; directly. Submit is coming from your button named 'submit'.

CODE
// this
$submit = $_POST['submit'];
if($submit)
{
..
}
// or this
if($_POST['submit'])
{
..
}

Reply

KansukeKojima
w00t! It works.

sonesay, what you said worked perfectly! But, an error said that the name and message variables were not defined... I almost posted another message saying that it would not work, but I added $name = $_POST['name']; and $message = $_POST['message']; and now it works perfectly! Thank you everyone that helped!

Now I just have to work on some styling and stuff...

thanks!

**EDIT**
ahh... crap... ok one problem left... whenever someone visits the page... it re-posts the previous message...... hmm... how would I fix that....

here is my code again...

CODE
<?
ini_set("display_errors", 1);
error_reporting(E_ALL);
//the host, name, and password for your mysql
mysql_connect("localhost","not tellin you!","not tellin");

//select the database
mysql_select_db("not tellin");
$submit = $_POST['submit'];
$name = $_POST['name'];
$message = $_POST['message'];
if($submit)
{  
//use the PHP date function for the time
   $time=date("h:ia d/j/y");
  
   // inserting it into the shoutbox table which we made in the mysql statements before
   $result=MYSQL_QUERY("INSERT INTO shoutbox (id,name,message,time)".
      "VALUES ('NULL','$name', '$message','$time')");
}
?>
<?
//returning the last 5 messages
$result = mysql_query("select * from shoutbox order by id desc limit 5");

//the while loop
while($r=mysql_fetch_assoc($result)){
//variables from table
echo $r["time"]."<br/>\n".$r["id"]."<br/>\n".$r["name"].":<br/>\n".$r["message"]."<br/>\n";
}
?>
<form action="" method="post">
<INPUT TYPE='TEXT' value='name' NAME='name' SIZE=30 maxlength='100' /><br />
<INPUT TYPE='TEXT' value='message' NAME='message' SIZE=30 maxlength='100' /><br />
<input type="submit" name="submit" value="submit">
</form>

 

 

 


Reply

sonesay
CODE
ini_set("display_errors", 1);
error_reporting(E_ALL);
//the host, name, and password for your mysql
mysql_connect("localhost","not tellin you!","not tellin");

//select the database
mysql_select_db("not tellin");
$submit = $_POST['submit'];
$name = $_POST['name'];
$message = $_POST['message'];
if($submit)
{


I think whats causing the error reporting for the first time you come to the page is the upper block of code where it says error reporting etc. Its catching and displaying the error when post vars submit, name, and message are assigned but are null I'm guessing. I would try and remove the error reporting statements in the first two lines and test it out. I think that way you can still try and assign the post variables and if they are null which would be in the case where someone first loads the page it shouldn't report the error. Not sure if this is good practice but if someone has a better way please post.

Reply

KansukeKojima
well... this is retarded... the error messages are gone now... but it keeps reposting the last message you typed whenever you refresh teh page.... what the hell...

Reply

coolcat50
Um Kansuke try this.

CODE
<?


//the host, name, and password for your mysql
mysql_connect("localhost","not tellin you!","not tellin");

//select the database
mysql_select_db("not tellin");
$submit = $_POST['submit'];
$name = $_POST['name'];
$message = $_POST['message'];
if($submit)
{  
//use the PHP date function for the time
   $time=date("h:ia d/j/y");
  
   // inserting it into the shoutbox table which we made in the mysql statements before
   $result=MYSQL_QUERY("INSERT INTO shoutbox (id,name,message,time)".
      "VALUES ('NULL','$name', '$message','$time')");
   $_POST['submit'] = 0;
   $_POST['message'] = "";
   $_POST['name'] = "";
}
?>
<?
//returning the last 5 messages
$result = mysql_query("select * from shoutbox order by id desc limit 5");

//the while loop
while($r=mysql_fetch_assoc($result)){
//variables from table
echo $r["time"]."<br/>\n".$r["id"]."<br/>\n".$r["name"].":<br/>\n".$r["message"]."<br/>\n";
}
?>
<form action="" method="post">
<INPUT TYPE='TEXT' value='name' NAME='name' SIZE=30 maxlength='100' /><br />
<INPUT TYPE='TEXT' value='message' NAME='message' SIZE=30 maxlength='100' /><br />
<input type="submit" name="submit" value="submit">
</form>


EDIT: Fixed BBCode

Reply

sonesay
The reason why its keeps reposting is because the post variable are saved since its posted to the same page. When you reload you reload the post lol. The only other way to do it so you can reload that page without double posting is to have it submit to a page thats designed specifically for inserting in to the database. Then redirect it back to the original page where you display form and last previous five message. I'm pretty sure that will work so you need an extra php page.

I dont think its possible to destroy post variables after a post. I could be wrong but I dont think we have acess to anything like that.. doubt it lol.

Reply

jlhaslip
Does this work any better?
I have adjusted it a little so that it checks to see if the Form is 'set' before assigning the variables used.
CODE
<?
ini_set("display_errors", 1);
error_reporting(E_ALL);
//the host, name, and password for your mysql
mysql_connect("localhost","not tellin you!","not tellin");

//select the database
mysql_select_db("not tellin");
if(isset($_POST['submit']))
{
    $submit = $_POST['submit'];
    $name = $_POST['name'];
    $message = $_POST['message'];

//use the PHP date function for the time
   $time=date("h:ia d/j/y");
  
   // inserting it into the shoutbox table which we made in the mysql statements before
   $result=MYSQL_QUERY("INSERT INTO shoutbox (id,name,message,time)".
      "VALUES ('NULL','$name', '$message','$time')");
}
?>
<?
//returning the last 5 messages
$result = mysql_query("select * from shoutbox order by id desc limit 5");

//the while loop
while($r=mysql_fetch_assoc($result)){
//variables from table
echo $r["time"]."<br/>\n".$r["id"]."<br/>\n".$r["name"].":<br/>\n".$r["message"]."<br/>\n";
}
?>
<form action="" method="post">
<INPUT TYPE='TEXT' value='name' NAME='name' SIZE=30 maxlength='100' /><br />
<INPUT TYPE='TEXT' value='message' NAME='message' SIZE=30 maxlength='100' /><br />
<input type="submit" name="submit" value="submit">
</form>

Reply

KansukeKojima
Thanks jlhaslip, I tried what you posted unfortuneately, it does not work. But, I've found something that does, and unless someone can come up with a better method... <iframes>!

Fortuneately, it keeps the shoutbox from re-posting... so I'll probably be using them... unfortuneately xD...

If someone has a better idea...I'll use it.

Reply

sonesay
if you really need to do it on the same page and not like how I said previous post with submitting to another page then redirecting back to the original. that way save post variables are lost then..

You can probably do it with some javascript. Set a flag for when the submit button is acutally pressed. That way you can distinguish between page reloads and real submissions. I wont give you exact code but that is the idea. Have a onclick function on your button to set flag that it is a real submit then check on your if statement code. If you really need the exact logic and code reply lol.

Reply

KansukeKojima
Err... yeah wait... I'll try out what you said in your previous post...

*EDIT*

Ok, I did what you suggested in the previous post. Works like a charm! Thank you so much!!

feel free to test it out

http://2kart.trap17.com (click the 'Open Shoutbox Window' link)

EDIT 2

bbcode is now included.

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Similar Topics
Looking for shout, box

Searching Video's for shout, box
advertisement



Shout Box Help



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE