We have been tasked with building web applications using javascript/css/html. We are supposed to have our code run as an app, that is to be accessible/functioning when there is no internet.
I have a client who wants to have multi-part images where different parts of the image can have their colors changed. So, I am thinking i need multiple transparent images that can be displayed...
I have a photoshop mockup, psd file and would like to use that as a background image on the site and have the buttons which are etched into that image be hotspots that react to mouse clicks....
I don't think str_replace is going to solve this issue, please see my listing that "there are no spaces in the array." I am guessing that what i need is a configuration solution....
Hi, i have an array in a Session variable. When I open the file download in a text editor, i have dozens of spaces which are at the beginning of the csv file. Excel 2007 has no display of the spaces,...
I have a program which uploads ascii format files, parses the lines,and does some stuff. I can parse by breaking into array with explode("\n","fileContent",) or doing the same with "\r", but i don't...
I am wondering if there is a way that i can make an exe which will load apache/php and an app so that a user can click access the application locally on their desktop through a browser ?
This is solved. I was able to upload using this code :
//upload file
$path_to ="images/";
$file_name =basename($_FILES['cimage']['name']);
$file_to =$path_to.$file_name;
$file_temp ...
One thing i was going to try was to just upload the picture to the current directory. So i used "" and "." as the target for the move_uploaded_file parameter, but that hasn't worked either..
Yes, I do not have any php errors. I am guessing that it must be that i have either the wrong syntax for the directory, or a permissions issue. But, I have not been able to get it to work despite...
I have the form set up correctly, and the PHP $File[] variables for name and tmp_name are both populated, but when i run the following, the files are not uploaded:
I am currently writing a website in php with classes and config, etc. I wonder, is there a tool that would recognize the properties of the classes i have created, and give me an intellisense...
The issue with my code was that i was using double quotation marks in the $stmt->bind_param() call to indicate parameter type ("ss"). Once i switched to single quotes, it is magic :)
I have followed instructions from a tutorial, but the following will not return results. I know that the query it is performing does have corresonding values. But, the while $stmt->fetch() loop never...