Re: Error LNK1104 when debugging Programming Software Development by rproffitt Given only this I won't be able to do more than comment how I use the Visual Studio system to debug my app. 1. I open the project. 2. I set the build to "Debug". 3. I set breakpoints on lines of code I suspect to be problematic. 4. I run the app while in Visual Studio. That's usually enough to track down what I did wrong. Re: Need Coding Help With A Project Programming Software Development by Dani … matter how wrong it might be. I feel like your comment accusing their teacher of teaching it poorly, and then preaching… Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel? Digital Media Digital Marketing by graceweb This was a fascinating read, Victor! The way you applied psychological principles like authority bias and loss aversion really shows how impactful small tweaks can be. I especially appreciated the emphasis on emotional storytelling, it’s often overlooked but clearly powerful. Thanks for sharing such actionable insights! Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon Just a correction to my last comment: 'I love being part of the DaniWeb experience,' not Daniwev. … typo I noticed immediately, but I couldn't edit the comment (which could be a useful feature). I was hesitant to… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Reverend Jim … that type of thing. A reminder to all - use the comment tool to give kudos instead of reviving a multi-year… old thread by adding a new post. Using the comment tool not only saves us from wading through old threads… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani … typo I noticed immediately, but I couldn't edit the comment (which could be a useful feature). You should be able… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon … typo I noticed immediately, but I couldn't edit the comment (which could be a useful feature). > You should be… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani Ah, yes, I thought you were talking about posts themselves. Post comments can no longer be edited. (Too many people were replying to post comments and then the person would change their vote and remove the comment.) Comments are mostly meant to be short things like "I agree with that!" or that type of thing. Re: Is linux your daily driver? Hardware and Software Linux and Unix by jkon … systems. My gaming experience is limited, so I can't comment on Ubuntu's performance in that area. Ultimately, I prefer… Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel? Digital Media Digital Marketing by asadkhan12 Your post perfectly highlights the power of behavioral psychology in funnel optimization! The results speak for themselves—small yet strategic psychological tweaks can make a massive impact on conversions. Trust signals, emotional storytelling, and cognitive ease are often overlooked but make all the difference. The way you broke down each … Re: Hello Everyone, I'm Ray Brad Programming Software Development by elary Salesforce is a great product Re: Hello Everyone, I'm Ray Brad Programming Software Development by Dani > Hi Ray, > can you guide what kind of this error is ? i am getting this on my e-commerce store which is on shopify. I got to know this error from microsoft clarity summary. (Most users encountered JavaScript errors on various product pages, such as "t[n] is not a function" and "Cannot read properties of null (reading '… Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel? Digital Media Digital Marketing by graceweb It’s amazing how just a few strategic changes can turn a struggling funnel into a success story. The emphasis on trust signals and emotional storytelling really resonates—those elements create a connection that can be the deciding factor for prospects. Thanks for highlighting those key takeaways! It’s a good reminder that sometimes it’s not … Re: Comment on these post that are not related to our niche is useful or not ? Digital Media Digital Marketing Search Engine Strategies by KaneshKumar Comment posting on irrelevant niche sites, does not carry more value than comment posting on relevant niche sites. However, those kind of links are useful if the web page where your link is having following attributes: Less outbound links no spam content Good PR DOFOLLOW Re: Comment on these post that are not related to our niche is useful or not ? Digital Media Digital Marketing Search Engine Strategies by bruceshan Comment posting on irrelevant sites will provide low quality back links, so better you need to get quality back links. Re: Comment system Programming Web Development by champmanking …;) or die(mysql_error()); while ($row = mysql_fetch_array($sql)) { $comment = $row['comment']; } }else{ echo 'No content for this ID'; } …quot; /> <textarea id="comment"></textarea> <input…_POST['submit'])){ $myid = $_POST['myid']; $comment = $_POST['comment']; $mymysql = mysql_connect("","",&… Re: Comment system Programming Web Development by champmanking …;db", $mymysql ); $sql = "INSERT INTO comments (page_id, comment) VALUES ($myid, $comment)" or die(mysql_error()); mysql_query( $sql, $mymysql ); } ?>[/CODE… page_id = $myid") or die(mysql_error()); while ($row = mysql_fetch_array($sql)) { $comment = $row['comment']; } }else{ echo 'No content for this ID'; } } ?> <… Re: Comment system Programming Web Development by Graphix … provided: [CODE] $sql = "INSERT INTO comments (page_id, comment) VALUES ($myid, '$comment')" or die(mysql_error()); mysql_query( $sql, $mymysql );[/CODE] You… anything! Try this: [CODE]while ($row = mysql_fetch_array($sql)) { $comment = $row['comment']; echo $comment; }[/CODE] Also the returning reply "Still not working… Re: Comment system Programming Web Development by EvolutionFallen …if (isset($_REQUEST['Submit'])) { $myid = $_POST['myid']; $comment = $_POST['comment']; $mymysql = mysql_connect("host","user","…quot;, $mymysql ); $sql = "INSERT INTO comments (page_id, comment) VALUES ($myid, '$comment')" or die(mysql_error()); mysql_query( $sql, $mymysql ); } ?>… Re: Comment system Programming Web Development by champmanking …myid; ?>" /> <textarea id="comment"></textarea> <input type="submit…lt;/html> [/CODE] [CODE]<textarea id="comment"></textarea>[/CODE] should have been […CODE]<textarea name="comment"></textarea>[/CODE] Nice overlooking ;) … Comment system Programming Web Development by champmanking I am trying to code a comment system where I can leave comments …has its own id. I would like a comment box where I can add and see other …page_id = $_POST['page_id']; $comment_content = $_POST['comment_content']; mysql_query('INSERT INTO `comment` (`page_id`, `comment_content`) VALUES('.$page_id.', "'.$comment_content.'"); ?>[/CODE… Re: Comment system Programming Web Development by Graphix [B]Adding comment part[/B] 1. Database Alright, let's review: you have … is done too. So you're done for the adding comment part (assuming it works, you should test the variables and…, run through the result with a loop, echo'ing each comment. If you don't know how, try reading a good… Re: Comment system Programming Web Development by EvolutionFallen … page_id. I would also recommend renaming the field called "comment" to "content" or "comment_content". Since… your table is already called "comment", having a field with the same name might get… Re: Comment system Programming Web Development by Graphix … $page_id in your HTML form, which specifies which page the comment should be placed. You only need to retrieve the comments…, run through the result with a loop, echo'ing each comment. If you don't know how, try reading a good… Re: Comment system Programming Web Development by champmanking … is the code: [CODE] $query = "INSERT INTO comments (page_id, comment) VALUES ($myid, '$comment')"; $result = mysql_query($query) or die(mysql_error()); [/CODE] Re: Comment system Programming Web Development by champmanking Interestingly, this comes out: INSERT INTO comments (page_id, comment) VALUES (, '')You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' '')' at line 1 Seems $myid and $comment are empty. Re: Comment system Programming Web Development by champmanking My problem is that I don't know how to make each comment exclusive to that particular page. Re: Comment system Programming Web Development by champmanking My DB is: [CODE]comments (ID INT NOT NULL AUTO_INCREMENT PRIMARY KEY, page_id INT NOT NULL, comment TEXT) [/CODE] Just added the quotes but it still won't work. Re: Comment system Programming Web Development by champmanking Anyone know why $myid and $comment are empty? comment section php Programming Web Development by hwoarang69 …gt;image_id user_id image image_name comment-> comment_id user_id image_id comment and image, comment are store in database i… type='submit' class='button' name='submit' value='Add comment' /></pre> </form>…