iarnazca Posted February 15, 2010 Share Posted February 15, 2010 I have kill(); in the script and I ran out of modify time. dont use kill(); use exit(); Quote Link to comment Share on other sites More sharing options...
nimzrocks Posted February 15, 2010 Author Share Posted February 15, 2010 Thank you very much for your kindness I'm really stuck with this comment script. Can you please tell me step by step ? and do you want me to forget everything I have done before ? This is what I'm looking for http://www.labnol.org/internet/google-image-search-problem/12671/ Thank you. Quote Link to comment Share on other sites More sharing options...
iarnazca Posted February 15, 2010 Share Posted February 15, 2010 yeah my code would be some "forget everything you've done before" code. You could implement the same things that they are doing. Mines just a Get it working now script I guess. Its all on one page if you just copy and pasted the code and created story.php it should work. The only thing is you need to make sure your calling the correct table when showing the story. Quote Link to comment Share on other sites More sharing options...
WolfRage Posted February 16, 2010 Share Posted February 16, 2010 Hey I wanted to tell you sorry for dorpping off, but I got buzy over the weekend with a new site launch. Do you still want my help in completing this project? Have you made any progress outside of the forum? Quote Link to comment Share on other sites More sharing options...
nimzrocks Posted February 16, 2010 Author Share Posted February 16, 2010 Thank you for coming back. I had a really bad time and I went so many things and finally I found something very simple. but I do not like It. Yes I want your help still and I'm sure you will give me something good. ok what do you want me to do now ? Quote Link to comment Share on other sites More sharing options...
nimzrocks Posted February 16, 2010 Author Share Posted February 16, 2010 WolfRage, everything you gave me and everything i did with this script working perfectly till now So I'm waiting for your next lesson. Thank you Quote Link to comment Share on other sites More sharing options...
WolfRage Posted February 16, 2010 Share Posted February 16, 2010 OK I saw that you added a time stamp to the table like I suggested, but we will also need a page column; so that we can pull comments for a specific page. This lesson will be to more parts. One more tonight and the final tomorrow. Then we can wrap up any lose ends. After you have added that other column for your entries into your data base we will extract the comments on a per page level. As a quick side note to automate the process when we add comments to the database we will pull the page name with the Reserved variable $_SERVER['PHP_SELF']. The automated page for pulling your comments. <?php $mysqli = new mysqli('dataBaseHost', 'userName', 'userPassword', 'userDataBase'); if ($mysqli->connect_error) { die('Connect Error ('.$mysqli->connect_errno .') '.$mysqli->connect_error); } //Of course there are much better was to handle this error instead of dying but for now. $sql='SELECT * FROM comment WHERE page='.$_SERVER['PHP_SELF']; $result=$mysqli->query($sql); while($row = $result->fetch_array(MYSQLI_ASSOC) { //At this point I am guessing that this will work as a while statement. But I am pretty sure. //Next we need your HTML here so that it will be styled the way you would like for your comments. //We should be able to spit our the parts of the returned query like so. echo $row['time']; echo $row['name']; echo $row['url']; echo $row['notes']; /*Be sure to include your HTML that will separate each comment block you will most likely want the separation to be applied on the top.*/ } $result->close(); $mysqli->close(); ?> Tomorrow I will combine all of the sections together appropriately and then we will add any missing pieces. Then you can have a look and tell me what else you would like. Quote Link to comment Share on other sites More sharing options...
sasa Posted February 17, 2010 Share Posted February 17, 2010 take look at http://www.allsyntax.com/tutorials/PHP/24/Building-a-Comments-Script/1.php Quote Link to comment Share on other sites More sharing options...
nimzrocks Posted February 17, 2010 Author Share Posted February 17, 2010 I added that page column as you requested. CREATE TABLE `mydatabase`.`comment` ( `commentid` INT NOT NULL AUTO_INCREMENT , `time` TIMESTAMP NOT NULL , `pagecolumn` INT NOT NULL, `name` VARCHAR( 40 ) NOT NULL , `email` VARCHAR( 50 ) NOT NULL , `url` VARCHAR( 50 ) NOT NULL , `notes` VARCHAR( 500 ) NOT NULL , PRIMARY KEY ( `commentid` ) , UNIQUE ( `commentid` ) ) ENGINE = MYISAM I'm bit confuse now but I made the file and named it $_SERVER['PHP_SELF'].php that is what you asked me to do right ? Waiting for you next step WolfRage Quote Link to comment Share on other sites More sharing options...
WolfRage Posted February 17, 2010 Share Posted February 17, 2010 No make the name something like include_comments.php. Change your pagecolumn column to a varchar not an int. I need your html that will style the comments just like you want. So please mock up the html the way you would want it to look for a comment, you can even include a fake comment and I will modify it to properly loop with our SQL Query. Quote Link to comment Share on other sites More sharing options...
nimzrocks Posted February 17, 2010 Author Share Posted February 17, 2010 Ok I renamed it to include_comments.php and changed pagecolumn to varchar. I know css but I do not have an idea to style comments, Can you please give me an example ? Then I can do it Quote Link to comment Share on other sites More sharing options...
WolfRage Posted February 22, 2010 Share Posted February 22, 2010 Ok so the html structure should look something like this: <div class="comment_container"> <p class="comment"></p> <p class="comment_signature"></p> </div> *Note to self be sure to perform nl2br before inserting the comments into the DB. You can of course apply your CSS rules using the classes. I will have more latter today, should have time throughout the day and for the rest of the week during work. We will get it done. Sorry for delays but as you know time is money. This weekend I launched one new website and I am nearing a deadline for another project that has much work still to be done. Any ways still trying to squeeze you in. Quote Link to comment Share on other sites More sharing options...
nimzrocks Posted February 22, 2010 Author Share Posted February 22, 2010 hmmm thank you but I'm really tired of waiting WolfRage Quote Link to comment Share on other sites More sharing options...
WolfRage Posted February 22, 2010 Share Posted February 22, 2010 Simply includen the script below for the page with comments. Not tested! <?php $mysqli = new mysqli('dataBaseHost', 'userName', 'userPassword', 'userDataBase'); if ($mysqli->connect_error) { die('Connect Error ('.$mysqli->connect_errno .') '.$mysqli->connect_error); } //Of course there are much better was to handle this error instead of dying but for now. $sql='SELECT * FROM comment WHERE page='.$_SERVER['PHP_SELF']; $result=$mysqli->query($sql); while($row = $result->fetch_array(MYSQLI_ASSOC)) { ?><div class="comment_container"> <p class="comment"><?php echo $row['notes']; ?></p> <p class="comment_signature"><?php echo $row['name'].' | '.$row['time']; ?></p> </div><?php /*Be sure to include your HTML that will separate each comment block you will most likely want the separation to be applied on the top.*/ } $result->close(); $mysqli->close(); ?> In order to post comments you will need to use the comment form that you created earlier and submit to this script: <?php if($_POST['submit']==='Submit') { $name=htmlspecialchars(trim($_POST['visitor'])); // we use htmlspecialchars to prevent some one from injecting content. $email=htmlspecialchars(trim($_POST['visitormail'])); //We could also use the filter_var() here if you want more precision. $url=htmlspecialchars(trim($_POST['url'])); $notes=nl2br(htmlspecialchars(trim($_POST['notes']))); if(empty($name)&&empty($email)&&empty($url)&&empty($notes)) { $mysqli = new mysqli('dataBaseHost', 'userName', 'userPassword', 'userDataBase'); if ($mysqli->connect_error) { die('Connect Error ('.$mysqli->connect_errno .') '.$mysqli->connect_error); } //Of course there are much better was to handle this error instead of dying but for now. $sql='INSERT INTO table_name (name, email, url, notes, time, pagecolumn) VALUES ('.$mysqli->real_escape_string($visitor).', '.$mysqli->real_escape_string($visitoremail).', '.$mysqli->real_escape_string($url).', '.$mysqli->real_escape_string($notes).','.$mysqli->real_escape_string($_SERVER['REQUEST_TIME']).','.$mysqli->real_escape_string($_SERVER['PHP_SELF']).')'; $mysqli->query($sql); $mysqli->close(); } else { echo 'Nothing was Posted!'; }// we will change this to be more helpful later. header('Location: '.$_SERVER['HTTP_REFERER']); //HTTP_REFERER may not always be set by the users browser! } else { echo 'Nothing was Posted!'; }// we will change this to be more helpful later. ?> Besure to take the time to customize these scripts further; at the very least you will need to change the database settings to correctly connect. Truth of the matter is that you had everything that you needed right here to complete your comment script. However you unfortunately did not participate in the excercise. Thus you have learned little of PHP; so it is very unlikely that I will help you out agian. Particularly because you do not appreciate free work and expected me to build you something quickly even though you were not willing to contribute anything more than setting up the database. Quote Link to comment Share on other sites More sharing options...
nimzrocks Posted February 22, 2010 Author Share Posted February 22, 2010 No its not like that WolfRage. I highly appreciate your help but Its been more than 3 weeks, I have stuck with this and I can not finish my project till I complete this that is why I said that. I'm really tired of doing this. Do not think this is the only place where I tried. I tried every where and tried to learn it and I'm glad I learn lil bit because of you. I always appreciate your help. I will put all together and I will test this right now. Thank you very much my friend. Quote Link to comment 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.