-
Began Watching Curl Posting thousands of looped rows at once in php
This is a SMS DLR application from http://www.smsgatewaycenter.com which is sent by them to my client's url and I need to configure for my client the same from my client's … -
Replied To a Post in Curl Posting thousands of looped rows at once in php
Also all the data in the CURLOPT_POSTFIELDS will not be in the URL but rather part of the POST body, so don't worry about problems with URL length. gabrielcastillo's suggestion … -
Began Watching fetching data from json
Link for API: [Click Here](http://api.uptimerobot.com/getMonitors?apiKey=u118216-ae6b502f1b3f6d272d0f9437&logs=1&alertContacts=1&responseTimes=1&responseTimesAverage=180&format=json) I want to get datetime and type parameters i try to but i get: Notice: Trying to get property of non-object Here is my try … -
Replied To a Post in fetching data from json
The problem is that the return result is not a valid JSON string: jsonUptimeRobotApi({"stat": "fail","id":"100","message":"apiKey not mentioned or in a wrong format"}) This is, rather, a JavaScript function call. This … -
Replied To a Post in Safe and SIMPLE database inserts and other queries
Good point! Maybe first two lines of `database.php` replaced with this new function would be a good idea: function db_connect() { // Connect to the database. This requires the PDO … -
Edited Safe and SIMPLE database inserts and other queries
Here is a simple way to insert into a database that isn't much harder than using string concatenation - which we all know is very dangerous due to SQL injection … -
Edited Safe and SIMPLE database inserts and other queries
Here is a simple way to insert into a database that isn't much harder than using string concatenation - which we all know is very dangerous due to SQL injection … -
Created Safe and SIMPLE database inserts and other queries
Here is a simple way to insert into a database that isn't much harder than using string concatenation - which we all know is very dangerous due to SQL injection … -
Began Watching Safe and SIMPLE database inserts and other queries
Here is a simple way to insert into a database that isn't much harder than using string concatenation - which we all know is very dangerous due to SQL injection … -
Began Watching Cannot INSERT data into mysql database
Hello everyone. I have just bought a new computer and I am currently working on creating an online cloud storage service. Every thing is going fine until I am struck … -
Replied To a Post in Cannot INSERT data into mysql database
Try adding these lines to the top of your PHP script to make sure errors show up: define('DEBUG', true); // change true to false to disable errors showing up if(DEBUG) … -
Began Watching Script will not make noise
This might be the vaguest question in the history of Daniweb but I have php chat program that is great all for one thing. It will not make any noise. … -
Replied To a Post in Script will not make noise
What do you mean by noise exactly? -
Began Watching Putting ajax toolkitscriptmanager Block JavaScripts execution
Hi Guys I have a Problem With My Asp.net Application Which is runing on asp.net 4.0 with vs 2010 Recently i have added Ajax toolkitscriptmanager, After that my Java Script … -
Replied To a Post in Putting ajax toolkitscriptmanager Block JavaScripts execution
Open up your browser's [JavaScript console](http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers). I bet the script manager is causing a syntax error or other error to occur which breaks the other JS on your page. -
Began Watching .NET 4.5.1 and GoDaddy
So I spent an hour on GoDaddy and Google and didn't get a definitive answer. Does GoDaddy's shared Windows Hosting plan support .NET 4.5.1? I found a page in their … -
Replied To a Post in .NET 4.5.1 and GoDaddy
[This article](http://msdn.microsoft.com/en-us/library/ms171868(v=vs.110).aspx#v451) has notes on the changes in 4.5.1. An example of something that could cause a problem - there do appear to be new datatypes. If you rely on … -
Began Watching Five Nested Gridview Problem
Hey I am also facing the problem with the nested griview. I have five nested gridview. When I click the button in the innser most gridview's text box comma is … -
Replied To a Post in Five Nested Gridview Problem
Can you post your code? -
Began Watching Web applications using C#
Hi all, I am here for a serious suggestions!!! I am new to web applicatons using C#.I want to clarify a few things please. 1). I'm using VS 2013 .Does … -
Replied To a Post in Web applications using C#
I recommend that you do indeed use MVC, it is (in my opinion) easiest to learn and superior as well. I learned MVC 4 from these two books: http://www.amazon.com/Professional-ASP-NET-MVC-Jon-Galloway/dp/111834846X/ - … -
Replied To a Post in getimagesize()
What version of xampp are you using? -
Began Watching Can I use My Laptop Build In Finger Print Reader With My PHP Application
I am developing web based mess management application where i need to make attendence through finger print identifications , for this purpose i want to use my laptop HP Probook … -
Replied To a Post in Can I use My Laptop Build In Finger Print Reader With My PHP Application
Unfortunately no, a finger print reader actually works by storing a cryptographic key in it's on board memory, then decoding a given value using that key ONLY if the finger … -
Began Watching Send email
Hey I am trying to create forget password feature. When a user forget the login password an email address must be send to his/her email with a password reset link. … -
Replied To a Post in Send email
Your Google SMTP account can send email to any address - if you are able to send email to yourself on Google without getting any warning bars at the top … -
Began Watching user login problem in regex
dear all, i am facing a problem. actually i wanna get user validation with the following code, I want to insert only [a-z0-9_] character in user login....when i insert username … -
Replied To a Post in user login problem in regex
Your pattern matches only a single character, add a + to match one or more characters: if ( preg_match ('/^[a-z0-9]+$/', $username)) { echo $username. ' ' . $password . ' … -
Began Watching getimagesize()
//LOAD IMAGE TABLE $filename = $_FILES["file"]["name"]; $image_info = getimagesize($filename); $image_width = $image_info[0]; $image_height = $image_info[1]; echo "filename1 : ".$_FILES["file"]["name"]; echo "filename : ".$filename; echo "image info : ".$image_info[0]; echo "image … -
Replied To a Post in getimagesize()
You may want to move the file to a permanant location first using [move_uploaded_file](http://php.net/manual/en/function.move-uploaded-file.php). The temp directory may have unusual permissions preventing you from reading the file, and these temp … -
Replied To a Post in Zomato clone
Scroll all the way up and click Edit profile in the top bar. -
Replied To a Post in How to make an image linked to joomla article
Oops, replace that line with <img src="<?php echo $item->getPrimaryImage()->getSource(); ?>" /> Really not sure if this all will work, I don't use Joomla specifically. -
Began Watching mysql outfile not working
hello; i have taken shared hosting plan ..my sql query on phpmyadmin is SELECT 'EMAIL','first','last' UNION select email,first,last from e where skills regexp "javapl" and deposit>=bid INTO OUTFILE '/home/user/etc/csvfiles/1412231915.csv' FIELDS … -
Replied To a Post in mysql outfile not working
This is likely because your user probably does not have the [FILE](http://dev.mysql.com/doc/refman/5.1/en/privileges-provided.html#priv_file) privilege. I would be very much surprised to see a user on shared hosting that has this privilege … -
Began Watching Zomato clone
Hey guys, I would like to know how much would it normally charge to create a zomato.com clone. Its a restaurant reviewing site where foodies can review the restaurants, bars … -
Replied To a Post in Zomato clone
If you're looking for a rough ballpark of effort for something custom, from scratch, I'd say it's around 150-200 hours of work: Homepage Geographic search Listing page Detail page Commenting … -
Began Watching How to make an image linked to joomla article
Hello all, I need help as the support team at rockettheme told me that this is out of their support area and its belong to joomla, but they were kind … -
Replied To a Post in How to make an image linked to joomla article
It looks like you'll sort of have to rebuild that section a bit, something like this might work... Basically we're removing the image from the background of that first element …
The End.