8,966 Posted Topics
Re: http://www.daniweb.com/web-development/php/code/435142/using-phppdo-with-error-checking | |
Re: This just creates a string array containing the single string "TABLE". | |
Re: You need a scripting language to link the two together. | |
Re: I especially enjoyed watching the beating "your friends down south" got against Finland :D | |
Re: With HTML you can specify the width and height required, but then the downloaded image is still in original size when downloaded. With PHP you can use [imagecopyresized](http://nl3.php.net/imagecopyresized) | |
Re: What exactly do you want to happen? The code for `change2.php` is similar to the above, but the query needs to check if the password matches too. | |
Re: > please guide me how i can do that. You can't, unless you start your own phone company. | |
Re: You can use jQuery's `animate` or Javascript's [scrollIntoView](https://developer.mozilla.org/en-US/docs/Web/API/Element.scrollIntoView) | |
Re: Closed. Continued [here](http://www.daniweb.com/software-development/cpp/threads/473718/ifelse-statement) | |
Re: Which line triggers the exception? | |
Re: Plans yes, for now just lacking the right idea. Well, that and I haven't really looked at the available functionality yet. | |
Re: > new OracleConnection("SConnectionString") I think you need to pass an actual connection string. | |
I did not receive an email today that I received a new PM. Did something change? | |
Re: > Its just laziness to not even make an attempt. A little short-sighted imo. There are more people than you think that are non-english, who have to use English to get an answer to their question. They're all attempting to get their point across. | |
Re: What does your trigger do? Doesn't it just need to run on an INSERT? | |
Re: http://www.php.net/manual/en/language.types.string.php Basically, a double quoted string is parsed for embedded variables, a single quoted string is not. echo "Your ID is: '$id'"; echo "Your ID is: \"$id\""; Javascript accepts both equally, but technically they should be single quoted (historically). | |
Re: It's a server response stating that the requested page does not exist. | |
Re: > I want to compare between these columns for any similarities in their names. Define similarities. A query cannot guess what the eye can easily distinguish as similar. So you need to define clear rules. | |
Re: If you use Imagick, it has a method to determine resolution. Not sure if GD provides one. Otherwise there's still an option to read it directly from the file (saw an implementation on SO). | |
Re: CKEditor or TinyMCE perhaps. | |
![]() | Re: Database ID's should never be exposed to users. Are you sure there is no way around this? For example storing those ID's in your session somehow. What is the reason you need them client-side? ![]() |
Not sure if it's just me, but I've been experiencing a slow DaniWeb again. Posting a reply takes seconds to complete. Sometimes, loading new pages appears to halt. Other sites I've visited act normal. Happens both at work and at home. | |
Re: There was no notice, but I've experienced downtime too. | |
Re: VK_TAB. Here's a list: http://delphi.about.com/od/objectpascalide/l/blvkc.htm | |
| |
Re: > Question I have is what would be the best way to do this and how? GitHub or the likes perhaps? | |
Re: WHERE user_id = 1 OR (user_id = 2 AND source LIKE '%facebook%') If that's not what you mean, show some sample data and required result. | |
| |
Re: This should work (off the top of my head): $(".course a.clickshow").click(function(){ $(this).next("div").toggleClass("hidden"); }) | |
Re: Sounds dubious. Any app in particular? | |
Re: See [this article](http://kodegeek.wordpress.com/2009/09/05/send-email-using-phpmailer-with-yahoo-business-account/). It states you can only use Yahoo when you have a business account. So your form won't appear because the sending of the mail fails, and then `exit` is called, terminating your script. | |
Re: Why not use: WHERE DATE(last_update) = DATE_ADD(CURDATE(), INTERVAL -1 DAY) Since you are only checking dates (and not times), no need for the between. | |
| |
Re: > Do you by any chance have a sample code for repopulating the content of a select box depending on the selected value from the previous select box? That's exactly what the code above does. | |
Re: > Do I need to install mail server or something on the web server On a shared host `mail` would normally work. Check your cPanel or ask your host. If you are running on localhost a mail server needs to be setup. I don't think you can relay using yahoo … |
The End.