8,966 Posted Topics
Re: Everything you need is on their website, [URL="http://docs.sencha.com/ext-js/4-0/"]documentation[/URL], [URL="http://docs.sencha.com/ext-js/4-0/#!/example"]examples[/URL], [URL="http://www.sencha.com/forum/forumdisplay.php?79-Ext-JS-Community-Forums-4.x"]forum[/URL], etc. ![]() | |
Re: You have more columns than you specified values for. Either specify the columns too, or add the missing values. | |
Re: order is a reserved word, use backticks. ![]() | |
Re: You can use [URL="http://php.net/manual/en/function.mysql-insert-id.php"]mysql_insert_id()[/URL] function after your insert query. | |
Re: Use [URL="http://php.net/manual/en/function.pathinfo.php"]this function[/URL] in your readdir loop to get the extension. | |
Re: [url]https://github.com/facebook/php-sdk[/url] | |
Re: Add: [CODE] $file = urlencode($dirArray[$index]); print("<td><a href=\"delete.php?file=$file\">Delete $dirArray[$index]</a></td>"); [/CODE] In delete.php something like this: [CODE] $file = $_GET['file']; unlink($file); [/CODE] | |
Re: You mean like this: [url]http://www.pritaeas.net/view/articles/faq-with-jquery[/url] | |
Re: According to my text editor they are line feeds (0x0A). Perhaps [URL="http://stackoverflow.com/questions/881779/neatest-way-to-remove-linebreaks-in-perl"]this link[/URL] can help. | |
Re: [URL="http://960.gs/"]This[/URL] is one for example (explanations on the site). | |
Re: That would be pretty difficult to guess. Define "some". | |
Re: Start a new thread for this, instead of hijacking an old one, and please use code tags. Do not forget to post your error too. | |
Re: In the first file: [CODE] $.get("func.php", { func: "drop_1", // ... [/CODE] | |
Re: Is the data different after 30 secs? If not, cache the sql result. If it is, then there is no alternative. How will you retrieve data without connecting? | |
Re: Check your curly brackets. | |
I am looking to encrypt data (preferably XTEA) on my .Net Micro Framework, send it to a webservice in .Net (Azure) and decrypt it there. I found this [URL="http://www.dmcinfo.com/Blog/articleType/ArticleView/articleId/83/Encryption-Compatibility-Between-NET-Micro-Framework-and-the-Full-NET-Framework.aspx"]blog post[/URL] but I am unable to get it to work. The encryption result on .Net differs from the .NetMF. I hope … | |
Re: You'd have to store the file open count somewhere (file/database), but you would need a decrement too when sombody stops using it. | |
Re: Try: [CODE] mysql_query('UPDATE ...') or die(mysql_error()); [/CODE] | |
Re: [url]http://www.daniweb.com/web-development/php/threads/410010[/url] | |
Re: Rotating means recalculating your points, based on the angle and rotation point. Do you want to rotate from the center of the canvas, or from the bottom-left ? | |
Re: You should look at frames as separate browser windows. Content of one cannot overlap another. The best way would be to read up on div's and css, and redesign your page. There are a lot of examples out there to get you started. | |
Re: Show what you have so far, and try to be more specific about what you want to achieve. | |
Re: You cannot simply change the font per line in a TListBox, without adding some additional coding. | |
Re: According to the [URL="http://nl2.php.net/preg_replace"]third comment here[/URL], you should use the 'u' modifier. | |
Re: [QUOTE=aditd;1751450]Was it something limited? I tried the Google link and took me to the a search result page in google not to a coupon?[/QUOTE] That link is two years old... | |
Re: Are you sure you are looking at the right query ? | |
Re: roomID 57 is twice in the table, for different roomBookingID. Perhaps the error lies in your roomDetail.php, you pass it only the roomID, so it does not know which roomBookingID you mean. If that's not it, try to explain a little better (I can't read your pictures), and please use … | |
Re: You get that error when your query fails, perhaps because [iCODE]$uid[/iCODE] is not valid or not set. | |
Re: [URL="http://php.net/return"]return[/URL] stops execution of your function, and returns the specified value to the caller, thus outputting $a (which is 12). Line 8 is never executed. What are you trying to do? | |
Re: If you only want to know if the word is there, and not need its position, then [URL="http://php.net/preg_match"]preg_match()[/URL] will do the trick. [CODE] if (preg_match('%\b(word|wordtwo|wordthree)\b%i', $text) > 0) { // one of the words was found } [/CODE] ![]() | |
Re: This shouldnt be a problem. Hard to guess what's wrong. A question for you, since you built your own REST API. Have a look at [URL="http://www.daniweb.com/web-development/php/threads/406067"]this thread[/URL], always looking for more insight. | |
Re: [url]http://wiki.postgresql.org/wiki/Monitoring[/url] | |
Re: [url]http://www.daniweb.com/web-development/php/threads/188592[/url] | |
Re: [CODE] <?php // use the long tag $query=" SELECT * FROM Liberty WHERE PatientID='$id'"; // $ is missing // why get the result twice ? $ret = mysql_query($query) or die(mysql_error()); $result=mysql_query($query); [/CODE] Use code tags next time. | |
Re: [url]http://php.net/manual/en/function.mail.php[/url] See example #4. | |
Re: In this [URL="http://stackoverflow.com/questions/6913165/resume-cv-parsing-in-php"]SO thread[/URL] two scripts are mentioned. | |
Re: You'll have to add a database with the same name, and a user/password with identical values to MySQL (with granted rights on that database). | |
Re: I disagree, but this may be a regional thing. If you are looking for a job as a web designer here, you are not expected to be able to program (except maybe javascript and the likes). Several of the companies I've worked for had a separate designer, which did nothing … | |
Re: Strings in javascript need single quotes around them. Add [iCODE]'[/iCODE] before and after your variables. | |
Re: to and read are reserved words, use backticks. | |
Re: Don't you need to specify types when creating the table ([URL="http://www.html5rocks.com/en/tutorials/webdatabase/todo/#toc-step2"]example here[/URL]). Are you sure you want to pursue this, because specification of websql by W3C is no longer maintained. | |
Re: It means session_start() is called in your code AFTER html or whitespace has been outputted. Most often, people have some whitespace before their <?php | |
Re: The commas on line 20 should be dots. The curly brackets on lines 36 and 38 serve no purpose. | |
Re: In part you're right, and I can understand your confusion. OOP is usually used to get some degree of abstraction into your code. If you have users, groups and rights for your webapp, each of these will be represented by a class, of which you can create an object (a … ![]() | |
Re: 10061 means that the host cannot be found. Are you sure mysql is running ? | |
Re: Check your code for errors, or invalid connection information. Without more information from you, nobody can say anything sensible about it. |
The End.