8,966 Posted Topics
Re: If the page loads data via AJAX this may prove impossible. | |
Re: Change line 8, swap the single and double quotes. | |
Re: > where is name of image You should know. Where did you store it when uploading the image? | |
Re: Is the date format correct? (yyyy-mm-dd) | |
Re: > Warning: require_once(scripts/connect_db.php): failed to open stream: No such file or directory Looks like you're missing a file. Where is that file included? | |
Re: http://isbn-information.com/isbn-information/the-13-digit-isbn.html ![]() | |
Re: http://msdn.microsoft.com/en-us/library/ms190273.aspx | |
Re: The next and previous functions are similar enough to be merged into a single function. | |
Re: [Here](http://www.daniweb.com/web-development/php/code/437655/getting-products-details-from-categories-subcategories-with-ajax-call-)'s one of our own examples. | |
Re: It's not a fully functional program, it's part of a form's code. | |
Re: http://www.daniweb.com/web-development/php/code/437655/getting-products-details-from-categories-subcategories-with-ajax-call- http://www.daniweb.com/web-development/php/code/476623/ajaxed-linked-dropdowns-select-fields-for-volatile-data | |
| |
Re: > I am truly disappointed in what has become the response level in this forum. That's a shame. Your question is hard to answer. You yourself say it's cryptic, and you post no sample data, nor table structures, nor expected output. This is hard to filter out from the above … | |
Re: Preferably use parameter binding. What is the PHP code you are currently using? | |
Re: You are missing dollar signs for the correct variables in your `$values` Can you be a little more specific about what works and what does not? | |
Re: > $sql_photo = "INSERT INTO `person` (photo) VALUES ('&location') WHERE person_id = " .$person_id; Do not use an ampersand, but a dollar sign: $sql_photo = "INSERT INTO `person` (photo) VALUES ('$location') WHERE person_id = " . $person_id; | |
Re: An impressive website has little to do with the choice, it can be built with all technologies. You should choose based on what you are most comfortable with (or your developers) IMO. ![]() | |
Re: http://www.daniweb.com/api/home | |
Re: > I think that the problem is the free hosting that does not allow such a connection to their servers, what' s your opinion? Usually not with free hosting. You should check your cPanel (or WHM) if it's possible to allow an IP address for external connection (Remote MySQL Access). | |
Re: Also loading jQuery 1.4.1 and 1.9.1. Remove line 38 too. | |
Re: Closed. If you are serious about hiring, post in the [Jobs and Resumes](http://www.daniweb.com/business-exchange/jobs-and-resumes/52) forum. | |
Re: What OS is running? http://code.msdn.microsoft.com/windowsdesktop/VBImageFullScreenSlideShow-364ae534 ![]() | |
Re: Make sure there is nothing outputted before calling `header()`. I'm positive you missed something, since you're not showing all your code. It could be as simple as a space somewhere. | |
Re: @lps: The single quotes around the table and column names are wrong. Either remove them or use backticks. | |
Re: > how to make it work with database On drop you can make an ajax call to update both tables. | |
Re: From the [TechNet blog](http://blogs.technet.com/b/gladiatormsft/archive/2014/04/12/information-regarding-the-latest-update-for-windows-8-1.aspx): "What this means is **those users who have elected to install updates manually** will have 30 days to install Windows 8.1 Update on Windows 8.1 devices; after this 30-day window - and beginning with the May Patch Tuesday, Windows 8.1 user's devices without the update installed … | |
Re: > Where the first two are my PK. No need to update the PK's if they're the same: insert IGNORE into table(Time_Stamp, Time_Stamp_ms, p1) values (time, timems, '1') The above has as drawback that ALL errors are ignored. or: insert into table(Time_Stamp,Time_Stamp_ms,p1) values (time,timems,'1') on duplicate key update p1 = … | |
Re: Perhaps [this thread](http://www.daniweb.com/web-development/php/threads/462975/consuming-soap-webservice-in-php) will get you started. | |
Re: Please provide more information about what you have, and what you want to achieve. | |
Re: > Are there any other solutions, that are more universal? You can add a text div that is visible, and remove it with Javascript. If Javascript is not enabled, it will not be removed. | |
Re: https://developer.paypal.com/webapps/developer/docs/classic/lifecycle/ug_sandbox/ | |
Re: > I thought it should be totally different. Why would they be different? It serves HTML like other websites, so you can make it look however you want. | |
Re: Provide? No. But if you show what you have, and tell us where you have a problem, am sure someone will help. | |
Re: Closed. http://www.daniweb.com/web-development/php/threads/477271/-mysqli_query-couldnt-fetch-mysqli The answers are in that thread already. | |
Re: I've been using BlueHost and JustHost (next to local providers) and so far pretty satisfied. Price is good, and support pretty quick with answers. Both have a cPanel back-end. | |
![]() | |
Re: $query = mysql_query("SELECT COUNT(1) FROM `categories` WHERE `name` = '{$name}'") or die(mysql_error()); Table names and column names must not be surrounded by single quotes, but by backticks. | |
Re: Do NOT use single quotes around column names, use none or backticks instead. ![]() | |
Re: Welcome to DaniWeb. > please don't hold on info to yourself even if it illegal what they asking Please hold back, as this is against [forum rules](http://www.daniweb.com/community/rules)! So before you continue posting I suggest you read them. | |
Re: Personally I'd use a professional company for it. Even though I'm familiar with all aspects (being a developer), I'd choose to hand this off, and not just because I'm not a designer. Of course this depends on your budget. Not sure if they do this where you are, but here … | |
Re: die("The following SQL Failed $query";)/>/>; should be: die("The following SQL Failed $query"); |
The End.