8,966 Posted Topics
I notice that the forum list (e.g. PHP) is not updating consistently today. I posted a reply in one thread, and deleted one in another, but the main PHP page is not showing those updates? Did something change? https://www.daniweb.com/web-development/php/threads/498436/order-by-with-numbers-countdown I replied, but the OP is still showing as last replier. … | |
Re: Use SQL Server Management Studio to create a backup and restore it on your server. | |
Re: A hosts file should only have one redirect IP on each line, but I've seen some people put two like so... 127.0.0.1 somedomain.com aliasname 92.103.3.45 domain.org It would need to be fixed to look like so... 127.0.0.1 somedomain.com aliasname 92.103.3.45 domain.org So here is an example of one I seen … | |
Re: There was a problem executing your query. Did you connect to your database? | |
Re: You must know by now that without some sample data/output it'll be very difficult to answer your question. | |
Re: Show your code, you just have to add a variable to your output loop. | |
Re: The code you are showing is C#. Try to explain your problem in detail. You are asking five questions at once, without any specifics. | |
Re: I suggest storing the filename in the database, and not the file. Just add an insert query when `move_uploaded_file` is successful. | |
Re: https://developer.paypal.com/docs/classic/training/ | |
Re: With a basic setup HTML is static so can be output to the browser as-is, while PHP will be parsed first. In theory HTML only files should be faster, but there are many techniques such as caching which have to be taken into account. So what are you getting at? | |
Re: You can try `col-md-4` instead of `span4`. IIRC spanX classes are deprecated as of version 3. | |
Re: Personally, I like this one: http://www.jssor.com | |
Re: You apparently have an array with comments. Just loop them and increment a counter for every user you find in that particular feed. | |
Re: Check if addcon1 actually exists in your outputted HTML. | |
Re: Each application has it's objects in it's own memory, so the same locking mechanism can't work. There are ways for applications to share memory, but I haven't used that in ages. | |
Re: if you look at the manual: http://php.net/manual/en/function.date.php You see that the second parameter is a timestamp. You are passing a string (from the POST array), so I am wondering what you entered into it. Do: print_r($_POST['date1']); print_r($_POST['date2']); and show the output. | |
Re: Without your code and problem description you won't get very far. | |
Re: Do `print_r($result)` after line 18 to see what exactly it contains. | |
Re: The WordPress website shows these: https://wordpress.org/plugins/tags/t-shirt-designer Am not a WordPress user/developer, so cannot say anything about their usability. | |
Re: Where is the connection to the database? | |
Re: What is the column type of `Exam_number` and is it indexed? You can also try: cmd.CommandText = "select r.Surname, r.First_name, r.Sex, c.type from dbo.cand_results AS r LEFT JOIN dbo.centres AS c ON r.Centre_code = c.code WHERE r.Exam_number = @examno " Although the optimizer should do this for you. | |
Re: if ($country_code == "GB" or $country_code == "SCT" or $country_code == "WLS") | |
Re: Lines 15 and 25 use `$file['name']` instead of `$file2['name']` and `$file3['name']` respectively. | |
Re: I'd probably choose to allow only POST'ing to the script (die on a GET request), and when rendering the page add a token which needs to be sent in the POST header. | |
Re: Order them longest to shortest (descending order). | |
Re: http://php.net/array_keys http://php.net/max | |
Re: Without processing... impossible. Assuming there would be an app, how would it create any logic based on an image? | |
Re: You mean, assuming this: $search = 'A'; //... $search = 'B'; //... $search = 'C'; //... You want to see A, B and C? | |
Re: https://www.daniweb.com/hardware-and-software/microsoft-windows/viruses-spyware-and-other-nasties/threads/491304/best-anti-virus-for-my-pc | |
Re: On line 4 you are also using short tags. | |
Re: Closed. https://www.daniweb.com/web-development/php/threads/498215/how-craete-filter-for-input-in-php | |
| |
Re: > what technology does it take to make such an animative websites? If you look at the page source, you can see a lot of Javascript/CSS frameworks included. > I am looking for a jquery that is able to slides small images to the left/right http://www.jssor.com | |
Re: > What is the use of using ol and ul in a HTML Page Defining lists. Here are the official definitions: http://www.w3.org/TR/html5/grouping-content.html#the-ol-element http://www.w3.org/TR/html5/grouping-content.html#the-ul-element | |
This is more a general approach question. I have an old ORM like framework for this application. Basically what it does, if it needs to load a bunch of objects/records, is for every child object in my result a new query is triggered to get it's data. Since the nesting … | |
Re: You cannot. Editing is enabled only for 30 minutes. I suggest you reply with the missing information. | |
![]() | Re: > I'm still looking for a plugin to 'tidy' the html Try Polystyle. |
The End.