-
Replied To a Post in Delete from two tables at one time
Check your error log, or add error checking to the execution of your query. -
Replied To a Post in how to convert to pdo
http://www.daniweb.com/web-development/php/code/462126/pdo-binding-example -
Replied To a Post in Delete from two tables at one time
Do you get an error? -
Replied To a Post in WordPress TwentyTen Search
> Also it looks to me that an empty search form and a search form with no matches is processed by the same else clause. Make sure. > Have you … -
Replied To a Post in Allowing Duplicate value
> it is allowing duplicate values in the DB. Set username to have a unique constraint in your table. -
Replied To a Post in how to access obj properties in php
> you could write a 'get' method Or use `__get`, read [here](http://php.net/manual/en/language.oop5.overloading.php) -
Replied To a Post in Do you store your algorithms?
> if you store the algorithms Since all my projects are in source control, yes, I store them. The hard part is remembering in which project you solved something. > … -
Replied To a Post in WordPress TwentyTen Search
Sounds like something breaks when you submit an empty form. It could be as simple as an unclosed tag in that situation. I'd search for issue in that specific case. -
Replied To a Post in Proper tutorial required
> i want to create everything from scratch. Using which language? -
Replied To a Post in how to access obj properties in php
It doesn't work because your html property is `private`. Change it to `public`. -
Replied To a Post in Problem with contact us form
> I tried it on another system it still brings that error Firewall somewhere else then? Something is blocking the port, at least looks like it. -
Replied To a Post in GPS script on server not receiving gps data
Am not sure what you mean. -
Replied To a Post in I need free software for my Daily sales / purchase in my General store
I doubt there is free software available that integrates with your barcode scanner. What kind of reader do you have? -
Replied To a Post in Servlet Error
> The errors are on the last three import statements. What error messages exactly? -
Edited Servlet Error
Hello everyone, Can you help me with the following problem. I am working on Eclipse IDE. I created new Dynamic Web Project and when I tried to create a Servlet … -
Replied To a Post in GPS script on server not receiving gps data
Test for failures. E.g. `socket_create` returns `false` on error. You can use `socket_last_error()` to get [more info](http://php.net/manual/en/function.socket-create.php). -
Replied To a Post in No Edit, Copy & Delete in XAMPP
Check the table priviliges. -
Replied To a Post in Recurring Subscription / Paypal
Depends on how you set it up. Check in your PayPal account. https://www.paypal.com/nl/cgi-bin/webscr?cmd=_manage-paylist -
Replied To a Post in Hello DaniWeb...!
Welcome to DaniWeb. -
Replied To a Post in Hello World
Welcome to DaniWeb. -
Edited OPERATING SYSTEMDD
HELP ME PLEASE TO KNOW HOW A DISTRIBUTED OPERATING SYSTEM IS A MYTH. I will appreciate your answer. -
Edited Hello World
Hello Friends, I am Parmeshwar Jha from India.I am new in this forum.I am working in IT Company as a IT Counsaltant. -
Replied To a Post in User login always throws: Incorrect username and password
Try this, if there's an error, paste it here. $sql = mysql_query("Select username, password FROM user_tbl WHERE username = '$user' AND password = '$pass'") or die(mysql_error()); -
Replied To a Post in Problem with contact us form
Not sure then, check your firewall. -
Replied To a Post in Problem with contact us form
Shouldn't smtp.UseDefaultCredentials = true; be: smtp.UseDefaultCredentials = false; -
Replied To a Post in Best PHP Forum
> The only free forum I know http://www.forummatrix.org http://www.cmscritic.com/resource-lists/forum-list/ -
Edited Master-master Synchronising issue in mysql server
I have 2 servers.Both are masters.One is local another is live.local generates even primary keys and live generates odd primary keys.But i want these primary keys in sequential manner (like … -
Edited Mono-core CPU?
I couldn't find it on net, so. Do you guys know if Intel or AMD or any other company might've been producing mono-core with higher clock frequency? Mono-core with 10GHz … -
Replied To a Post in MVC Webapi Global Object to be re-used by all the users
Not sure what's wrong then. Hard to say without being able to debug. -
Edited Win7: Strange fopen() "a+" behaviour
I am currently writing a little applet to modify files in a certain way. However, I am noticing wildly strange behaviour. I have an output file that is fopen'd in … -
Replied To a Post in Problem with contact us form
Apparently, your specified host is unreachable or rejecting your connection. What server is that? Your own? -
Replied To a Post in MVC Webapi Global Object to be re-used by all the users
Create a static class with one static method that returns a private static ComClass instance on demand, and creates/initializes it if it's null (singleton). public static class ComClassSingleton { private … -
Replied To a Post in MVC Webapi Global Object to be re-used by all the users
You can probably use the `Session_Start` method in `global.asax.cs`. If you need only one instance for all sessions, you can turn your COM instance into a singleton, to make sure … -
Replied To a Post in I want to undo.
Click on "Edit profile" at the top of the page. Then enable the checkbox at the bottom, saying "Receive Occasional Community-related Email?". -
Replied To a Post in Newby needs help!
Something like this perhaps? https://zapier.com/zapbook/callfire/zoho-crm/ -
Replied To a Post in live chat working fine on localhost but in server send response very late.
Use [XDebug](http://www.xdebug.org/docs/profiler) or use the old-fashioned [microtime](http://php.net/microtime) to do it yourself. -
Replied To a Post in live chat working fine on localhost but in server send response very late.
> dont know why is this slow on the server Time your code and log it, so you'll know exactly which part is executing how long. Looking at code and … -
Edited Unable to remove a variable in session array
Hi everyone.. I'm using a very simple code to remove an item from session array. I just jave no idea why it returns SQL error like this in another page … -
Replied To a Post in Mysql(db design) - storing invoices that starts from 1 each financial year
Did you try Taywin's example? -
Replied To a Post in Storing apostrophe's into a database as ’ or '
It's always best to sanitize input anyway, but when using binding the apostrophes aren't an issue. -
Replied To a Post in Mysql(db design) - storing invoices that starts from 1 each financial year
create table invoices ( years char(9) not null, invoice_number int unsigned not null auto_increment, primary key(years, invoice_number) ) AUTO_INCREMENT = 100 -
Replied To a Post in Email Options
I remember a discussion about this. If I find it, I'll post it. -
Replied To a Post in display pdf on same page
Did you just dump the example code in your html, or did you adjust the js and css to your needs? -
Edited HOW TO DISPLAY DATA BETWEEN TWO DATES FROM DATETIMEPICKER IN DATAGRIDVIEW
THIS IS MY CODE.... bUt i am not getting the data between the given dates IN THE DATAGRID VIEW Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e … -
Replied To a Post in HOW TO DISPLAY DATA BETWEEN TWO DATES FROM DATETIMEPICKER IN DATAGRIDVIEW
Closed. Continue here: http://www.daniweb.com/software-development/vbnet/threads/481855/how-to-display-data-between-two-dates-from-datetimepicker-in-datagridview -
Replied To a Post in display pdf on same page
You'll probably need something like PDF.js -
Replied To a Post in Dynamic PHP Table
<div class='column message-column'> That one is not closed before the new semester. Nor is the table and the p tag. -
Edited Web Development
Hi, I'm new to web development sector. Can anyone suggest me some tips or blogs to gain information about the web development with emerging ideas and tricks. -
Edited Details about alexa ranking
Hi to all, Can anyone tell me about alexa ranking and its ranking procedure? I'm doing seo for one of my client website, were alexa ranking is high(6 digits). Whether … -
Replied To a Post in Dynamic PHP Table
Show the generated html.
The End.