8,968 Posted Topics
Re: Looks like the mssql module is not activated in your php.ini | |
Re: Not sure about the better part, but the AddHandler was made for this (telling Apache what to do with a certain file). | |
Re: Store the limit and a last changed date in a table. Before updating a value, see when it was changed last, to determine if it should be reset. | |
Re: I have one [URL="http://www.pritaeas.net/view/articles/portfolio-with-jquery"]here[/URL] that is relatively small. Do you have your page online, so we can see what's wrong ? | |
| |
Re: Wrong user/password when trying to connect. The other two are follow-up errors. | |
Re: Can't you subclass your class, or add a member variable to it to handle such custom change ? | |
Re: Try yourself first. There are a lot of threads in this forum on the topic. | |
Re: jQuery UI defines visual widgets for you to use, like a calendar. Theming is built into this, so can be easily modified to suit your needs. | |
Re: [QUOTE=AdriftUniform;1453145]The annoying thing is that names with underscores will work everywhere else in the website weather it is echoing the username, using it in the url or saving it in a database along side an uploaded image, just not with my friends system.[/QUOTE] This should tell you already that the … | |
![]() | Re: "log_mysql_query" typo perhaps ? Or is this a function you created ? ![]() |
Re: onsubmit is called first. If this returns false, the form will not be submitted to the page specified in action. | |
Re: To be able to debug remotely you DO need to install a debugger and change some settings. If you can download everything (including the database) locally, then you can do it from your computer (assuming you have Apache, PHP and such installed). However, there is always a chance that there … | |
Re: [url]http://php.net/manual/en/function.is-int.php[/url] Am getting slow... | |
Re: I think you're better off asking them. They provide excellent support so you should have an answer quite soon. | |
| |
Re: If you want to do this then you should have a look at javascript. You will need to poll the server at an interval to get the changes. | |
Re: If you want to change the cities when the country changes without reloading the page, then you need some javascript too. | |
Re: For example: [code=sql] SELECT * FROM movies WHERE title LIKE 'Ca%' [/code] | |
Re: Are you sure that file_get_contents is allowed to get a remote page ? Not every host allows this. | |
Re: Read the first comment on [URL="http://php.net/copy"]this page[/URL]. | |
Re: Missing comma. Please, next time use code tags. Also, put a comment on the correct line so we now where to search. | |
Re: In the WHERE clause you have to specify which userlevel to use, the one from mssgs or users. | |
Re: If the file can be navigated to, then it will most likely get indexed. To point a robot to the file, you can always use a sitemap. | |
Re: [code] xmlhttp.open("GET","test.php?q="+str,true); [/code] You should use a full URL, starting with http. | |
Re: You should provide a full URL, not just ajax.php in the xhr.open() Next time, please use code tags. | |
Re: What error do you get ? Did you try to execute that command line manually ? | |
Re: [url]http://www.mysqlajaxtableeditor.com/index.php[/url] | |
Re: If your query results are ordered by month and the order you want in your table, then you can do it in a single loop. [code] $current_month = 'none'; // ... get your query results while ($row = mysql_fetch_assoc($result)) { if ($current_month <> $row['month']) { // End previous table, unless … | |
Re: You need to use the php.exe to execute the file. So in your scheduler you'd add something like this: [code=text] c:\PHP\php.exe -f "c:\Apache\htdocs\folder\phpfile.php" [/code] | |
Re: Have a look at [URL="http://www.swissdelphicenter.ch/en/showcode.php?id=1664"]this example[/URL]. It uses the TStringList CustomSort. You can use the same method to sort the by the objects. | |
| |
Re: Use a counter. Start from 0. If the counter modulus 4 is 0 then output a tr tag, then output the td, after that if it is 3 then output a /tr tag. Your fun ends when the counter reaches 15. | |
Re: Did you try to do the copy dir through an AJAX call, or is this not something you want ? ![]() | |
SetAutoSubClass() has been deprecated in newer versions of Delphi. Can anyone tell me what to replace it with ? I cannot find it in the Delphi 2009 OLH, nor in the VCL source (Forms). | |
Re: The variable $bb is declared [URL="http://php.net/manual/en/language.oop5.static.php"]static[/URL] in the latter example. But I suggest you'd better read this [URL="http://php.net/manual/en/language.oop5.php"]manual[/URL] to get a better understanding between classes and objects. | |
Re: First do some performance testing to locate the problem. Then fix it. | |
Re: Are you sure that [icode]t1.sendMessage(phoneNumber,messageSend)[/icode] is a blocking function ? Perhaps it starts a new thread and therefor returns control instantly. | |
Re: Compare the link or title with the date from the rss against your database. | |
Re: A map is nothing more than a search replace list, so you could just use one RewriteRule for every line in the map. | |
Re: You must have some idea, about what to put where. What do you think ? | |
Re: Your display function refers to $this (the current object). If you try to use the scope operator (trying to access a class function), $this is not defined, as there is no object instantiated. | |
| |
Re: You can either start a download, or redirect. Both is not possible. | |
Re: [QUOTE=Borzoi;1443607]Also, there is no part of that code where you send the mail. Lines 25 and 26 wouldn't cause the mail to send as you're just putting it into a variable.[/QUOTE] Not true, it will send. The value returned is a boolean to show whether or not the mail was … |
The End.