8,966 Posted Topics
Re: Closed. Continue here: http://www.daniweb.com/software-development/cpp/threads/477274/creating-a-tune | |
Re: Because people not wanting to learn new things, MS has changed 8.1 so it starts up on the desktop, the shutdown button is visible in the start screen, and apps now have a close and minimize button... | |
Re: Do you want to watermark an image file? | |
Re: A dbf is a database file. You'll need a dbf viewer to export the data. There are plenty of free ones out there. | |
Re: http://validator.w3.org/ | |
Re: Can't you CONCAT both columns to create a timestamp? | |
Re: Here's an [URL="http://stackoverflow.com/questions/547224/wamp-cannot-load-mysqli-extension"]SO thread[/URL] with some tips. What version of WAMP are you using? Is there perhaps an another PHP.INI getting in the way? | |
Re: > I really got going with PHP because I could get almost immediate results in my browser, is this a good idea? To keep someone interested, maybe. To learn programming, probably not. I'd prefer to teach somebody C#/WinForms which has results just as quickly, but has the advantage of type … | |
Re: You can't. HTML is interpreted by the browser, so it's downloaded no matter what. You can obfuscate it a little, or make it harder for inexperienced users, but it's always viewable. | |
Re: The image shows the default browser popup for a protected page. Do you want to make a popup that looks similar, or do you want to protect your page so you get THAT popup? Duplicate, continue here: http://www.daniweb.com/web-development/php/threads/477125/http-authentication | |
Re: Have a look at `mysqli_multi_query`, because I think `execute` does not execute multiple queries. | |
Re: > And I fail at implementing it Do you have a fiddle? What have you changed in the above demo? | |
Re: Go to "Edit Profile" and enable "Automatically Watch Articles I Post In" | |
Re: > The mail function was disable by my hosting provider Am sure all options are disabled. Probably your only option is to use PHPMailer in combination with a Google account for example. | |
Re: How about going to his profile and browse through his [replies](http://www.daniweb.com/members/522915/Mitja-Bonca/posts). | |
Re: It's a CMS. Everything you need to know about it is [here](https://drupal.org). | |
| |
Re: You need some activity before that option is enabled. | |
Re: To summarize the above post, missing closing double quote. | |
| |
Re: > Is it possible to do the same with using HTML5 only? No. | |
Re: I don't think you can delete the record to be inserted. There must be a way to cancel it, perhaps by throwing an exception (signal). | |
Re: I use #4 for private properties and local variables, #3 for public properties, constants, table- and column names. | |
| |
Re: MySQLi does NOT throw exceptions (PDO does), check the method result. Anyway, remove `id` from your query and you should be fine (and reverse type and website). | |
Re: mysql_select_db($database_conn, $conn); $query_rpz = "insert into residents_payment (uid,rate) select uid, levy from residents"; $rpz = mysql_query($query_rpz, $conn) or die(mysql_error()); That's all... | |
Re: The problem is that mysqli does not throw exceptions, PDO does. Looks like you mixed the two. Check the method result instead. Then you'll probably find out more. | |
Re: > I can drive my Prius 500+ miles between fillups Is that city drive over a period, or a single 500 mile stretch? | |
Re: Do: mysql_query($sql1) or die(mysql_error()); and tell us if you see an error. | |
Re: If your column is a varchar, it's using a string comparison. When using a string comparison "9" > "1000". You should be using integers imo. | |
Re: On each page you should check whether the user has already logged in. If not, redirect to the login screen. | |
Re: If you google you'll find some, although am not to sure about how trustworthy they are. Most repectable hosts only allow a trial period. | |
The End.