-
Replied To a Post in Loop with ads
@ihelpyou > if he wants to repeat the process for every 3 records. That assumption wasn't clear from the OP, so I left it out on purpose. -
Replied To a Post in Loop with ads
$rowCount = 0; while ($row = mysql_fetch_array($result)) { $rowCount++; $id = $row['sale_property_id']; // etc. echo ' <div class="row"> // etc. '; if ($rowCount == 3) { echo 'YOUR AD HERE'; … -
Replied To a Post in Change Password doesn't work
Nothing at all, not even if your passwords don't match? <form method="POST" action="navigation.php"> The form is posted to navigation.php. This is the correct script? -
Replied To a Post in Loop with ads
Show your code, the part that loops your results. -
Replied To a Post in Loop with ads
So just keep row count in a variable, and use that to determine when to insert your ad. -
Replied To a Post in Change Password doesn't work
What exactly doesn't work? If you echo the generated query, does it execute in phpMyAdmin? Is `$conn` a valid object? -
Replied To a Post in RegEx to match ipv6 address anyone?
> but not for plucking them out of a string containing ipv6 addresses Can you show sample input? -
Replied To a Post in How to design like this picture
Use [bootstrap](http://getbootstrap.com/css/#grid) to create 4 columns. -
Replied To a Post in Tooltips
Same in Internet Explorer, Safari and Chrome. -
Replied To a Post in Tooltips
Like that... -
Created Tooltips
When I hover over a user logo in the endorsement page, the name appears on the left hand side of my screen (Opera). At closer inspection, it appears to be … -
Edited sum of dynamic tables column
I am new to sql server .I have recently downloaded Sqlserver 2008 and connected from vb.net . I am trying to create dynamic tables with two columns such as name,amount … -
Replied To a Post in RegEx to match ipv6 address anyone?
My bet would be the answer here: http://stackoverflow.com/questions/799060/how-to-determine-if-a-string-is-a-valid-ipv4-or-ipv6-address-in-c If you need `inet_ntop()` then have a look a PInvoke.net -
Replied To a Post in mySQL - Primary Key
Do you already have records in your table? -
Replied To a Post in i need to get latest created record based on latest created date
Just use a WHERE clause comparing to the MAX date, or ORDER BY DESC. -
Replied To a Post in Who likes the tagging system?
Can I search on two specific tags, or still on the list? -
Undeleted a Post in Who likes the tagging system?
I assume editing tags comes back at some point? -
Deleted a Post in Who likes the tagging system?
I assume editing tags comes back at some point? -
Replied To a Post in Who likes the tagging system?
I assume editing tags comes back at some point? -
Replied To a Post in Who likes the tagging system?
o/ \o/ once tag intersect works. -
Marked Solved Status for Search broken
No matter what I type in the search box, it only returns links to member profiles, if any. -
Replied To a Post in Search broken
Ah... doh. Have been testing websites with Ghostery installed. -
Created Search broken
No matter what I type in the search box, it only returns links to member profiles, if any. -
Marked Solved Status for Slow pages
You have some serious query/caching issues. Times vary but slow nonetheless. Finder -> My Bookmarks Page generated in 26.1996 seconds with 8 database queries and 7 memcached requests using 6.01MB … -
Replied To a Post in string to date time -> format
Can't you just use: $joinDateStr = date('l F Y H:i:s', $user_data['6']); -
Replied To a Post in Health app reload!
> you can refer Click Here for more details And how exactly does a very global overview answer this question? (Ignoring the fact that EF/MVC is already used.) -
Created Slow pages
You have some serious query/caching issues. Times vary but slow nonetheless. Finder -> My Bookmarks Page generated in 26.1996 seconds with 8 database queries and 7 memcached requests using 6.01MB … -
Replied To a Post in Are discussions hard to follow?
> The sidebar, etc. hasn't changed since the old version. That doesn't mean I was fond of it in the old version. I think if you make a screenshot of … -
Replied To a Post in Are discussions hard to follow?
> Regarding your question, my personal answer would be "yes". I'm finding it really confusing. Same here. Too much space and distractions around the actual topic. I'd go as far … -
Replied To a Post in Hello to all community members
Welcome to DaniWeb. -
Replied To a Post in New design live
Hitting ESC does it for me in Opera. Clicking outside the window works too. -
Replied To a Post in New design live
I have to agree with jwenting on the oversized spacing and fonts. If I go to the PHP forum page I see FOUR articles on a 1080p screen... There's just … -
Replied To a Post in Hello Everyone. PHP webmaster here.
Welcome to DaniWeb. -
Replied To a Post in C# Here
Welcome to DaniWeb. -
Replied To a Post in Jquery for dropdown textbox
http://www.pritaeas.net/public/jquery/collapse/index.html -
Replied To a Post in Cpp
https://www.daniweb.com/software-development/cpp/threads/70096/c-books -
Created One Small Certificate for the Web
https://www.eff.org/deeplinks/2015/09/one-small-certificate-web-one-giant-certificate-authority-web-encryption Let’s Encrypt is a free, automated, open-source certificate authority (CA). The goal is to revolutionize encryption on websites, making HTTPS implementation a seamless, no-cost option for anyone with a … -
Replied To a Post in how to clear a data in database older than 1 months in mysql(xamp) database
https://dev.mysql.com/doc/refman/5.1/en/create-event.html -
Replied To a Post in The future of DaniWeb
Never mind. Local issue. -
Replied To a Post in how to clear a data in database older than 1 months in mysql(xamp) database
It's not that simple. 1. Add a timestamp column to the tables you want to do this for. 2. Make sure that when you insert a new record this date … -
Replied To a Post in The future of DaniWeb
> However, moderators can already go into a chat log I get a list of dates, but the logs aren't opening. > opinions on the matter? Just make sure you … -
Edited Can't save file in php
Hi everyone, i wanted to upload an excel file in a form and then display/edit the file from the form. Currently, the file can be uploaded at localhost but when … -
Replied To a Post in how to clear a data in database older than 1 months in mysql(xamp) database
Add a timestamp in every table and use that to determine whether or not it should be deleted. -
Replied To a Post in Search Boxes
Can't you just fork Tipue and fix the issues for IE8? -
Replied To a Post in int filed mysql query string ?!?!
Most likely the 'a' is implicitly converted to an int, resulting in 0 as default value on failure. -
Replied To a Post in PHP TEA Encryption
Perhaps [this Javascript version](http://www.movable-type.co.uk/scripts/tea.html) can help. -
Replied To a Post in Not retrieving data with ajax call
Your three inputs all have the same id and name. Because of that `getElementById` will always returns the first one. You can pass `this` as a parameter to your `ajax_post()`. … -
Replied To a Post in multiple values inline from the database
> Big data pull just to get the titles. Indeed, a separate GROUP_CONCAT query to get them all at once is recommended. Even if you still need to loop through … -
Replied To a Post in multiple values inline from the database
Remove the h3 tag. -
Replied To a Post in Update Function is not working with OOP PDO
Why is your $whereString before the WHERE clause?
The End.