8,966 Posted Topics
Re: Hmz. Please clarify the logic that you would want to implement. I have a feeling it will only be possible when using sessions or cookies, and both can be disabled. | |
Re: Depends on what you want to do with it. | |
Re: Read up on AJAX. Here's a [code snippet](http://www.daniweb.com/web-development/php/code/437655/getting-products-details-from-categories-subcategories-with-ajax-call-) that uses it. | |
Re: `ul a[href$=".pdf"]{...}` should be the one you need. AFAIK it **should** be case insensitive (except for class and id attributes), but am not sure if this is correctly implemented across browsers. | |
Re: Clicking the submit button does not stop from posting the info to your php file. You'll need to add some JavaScript valid function, which returns false to stop it. | |
Re: You'll need to add a record for each missing year. | |
Re: What do you want to save instead of `-1`? | |
Re: [a-z\.\/_]+ | |
Re: What exactly do you need explained? It uses a very basic XOR mechanism. | |
Re: Only reading the file headers/identifiers/magic numbers comes close to be safely determining it's type. | |
Re: Have a look at PhpClasses.org. They may have something. | |
Re: The 1-click installation installs with default settings. If you install yourself, you'll need to specify database information for one. If you are not too familliar with installing scripts, go for the 1-click option. However, if you want to learn, do the install yourself. | |
Re: It reduces risk. Always validate your inputs. Don't blindly inject a value, even if you are binding it. It may be the wrong type and you end up with unexpected results. ![]() | |
Re: If you have installed PEAR, use the package installer that comes with it. | |
Re: You can use the timediff in your update query, wouldn't that be easier? | |
Re: Wamp does not have an email service installed. I think you could install Mercury. | |
Re: > Please provide a light On what specifically? | |
![]() | Re: I'd like to know more too before I start clicking something I may not be able to undo. ![]() |
Re: I think you are just missing the plus signs: RewriteRule ^id/([^/]+)/([^/]+)\.htm$ /index.php?id=$1&dealname=$2 [QSA,L] ![]() | |
Re: What line causes this error? ![]() | |
Re: Am not entirely sure, but I think a subquery requires an alias too. | |
Re: Give an example of the input that does not work. I cannot reproduce your problem. | |
Re: Just add `LIMIT 1000` after your order by. | |
Re: http://www.daniweb.com/software-development/vbnet/threads/441295/set-connection-string-at-run-time-in-vb.net | |
Re: Give an example of what you have, and of what you want. | |
Re: Put parenthesis around the ternary part. | |
Re: Is the email body personalized, or can you just send one email and BCC everybody? | |
Re: You can't use `execute` to get results. You need to call `fetch` after `execute`. See the examples [here](http://www.php.net/manual/en/pdostatement.fetch.php). @LastMitch: `:id` is correct for parameter binding. ![]() | |
Re: You need to use `mysql_fetch_array($result)` first. You can't just use the returned resource. ![]() | |
Re: We are not a coding service. [Here](http://www.daniweb.com/web-development/php/code/379236/php-login-page-and-mysql)'s a nice sample to get you started. Try it, if you have issues come back here with your question. Next time don't type in all caps. | |
Re: PHP is server-side and as such does not have user interaction. You will need to make a script that outputs a form for the first image. When the form is submitted do the next. You can use a session to store the current image being processed. ![]() | |
Re: It should be: $del_id = $_POST['checkbox'][$i]; | |
Re: [MySQL's own solution](http://www.mysql.com/products/enterprise/query.html) would be my choice. | |
Re: Do this and find out: $response = mysql_query($result) or die(mysql_error() . '<br/>' . $result); Are you sure none of the variables contains a single quote, messing up your query? | |
Re: Have you tried using `document.getElementById('comments').value` | |
Re: > Is there any way to have the content showing by default? Remove line 3. It hides all content. | |
Re: Calculate before and after the comma separately. What's behind the comma needs to be handled differently. The result of the SUM is just the usual decimal addition. See [this page](http://dev.mysql.com/doc/refman/5.1/en/time.html), look for elapsed. | |
Re: > Are you trying to get answers to your own questions? Not often. Everything you need is online somewhere and my current topic is not used on this forum. > What value do you get from helping people? Trying to keep my PHP and Delphi skills alive. I know how … | |
Re: Taken from the top of the page you linked: "Note: The Google Web Search API has been officially deprecated as of November 1, 2010. It will continue to work as per our deprecation policy, but the number of requests you may make per day will be limited. Therefore, we encourage … | |
Re: Storing an image in a varchar column is probably causing the issue, use a binary column type. | |
Re: Have a look at the `FIND_IN_SET` function (MySQL). | |
Re: IIRC the jquery-ui allows styling of checkboxes. So if you use a regular from with styled checkboxes you don't have a problem I think. | |
Re: This function may do the trick: http://php.net/ob_implicit_flush | |
Re: http://www.phpbuilder.com/news/item.php?id=1853 |
The End.