Advertisement

635 organizations, including eBay, Ericsson and Lockheed Martin, now work smarter with Corporate Accounts. Save up to 42%

 

Welcome! Let me know if you need help using the site or assistance with non-technical questions.

 
Top PHP Solutions: 1 - 25 of 1624
 
$query = "SELECT COUNT(*) FROM grouplists WHERE grouplists.gid='$groupid'"; $result2 = mysql_query($query); $groupcounter = mysql_fetch_array($result2); This would return an array, i dont...
Hi, I have a php application with a mysql database backend. This application is used to view a technicians schedule. The app does the following: 1) I have a drop down from where I select a te...
I have tried to add a top menu module to a website here: http://murraygrey.com.au/joomla I have followed instructions given here: http://www.rockettheme.com/option,com_smf/Itemid,190/to...
Hello how to make wget to use random proxy from list if i have $proxy[0] = "http://1.1.1.1:8080"; $proxy[1] = "http://2.2.2.2:8080"; $proxy[2] = "http://3.3.3.3:8080"; i need ph...
I have a form which displays the current time in a particular format: <?php echo(date("d/m/Y g:i a",mktime())."");  ?> The end user can change this if they wish although naurally the format ...
We have a server with a display errors directive off in php.ini and all the errors are shown on apache error file. 2 days ago i put ini_set('display_errors', E_ALL);  in the code and we can...
Hi, I’ve got a PHP class called User which I am using across sessions by implementing the __sleep and __wakeup methods.  The class itself is working fine, but I’ve los...
I have a directory in the "./images/" folder. Let's call it "2006". The directory contains a lot of thumbnail photos. The directory will be updated for more photos in the future. Let's say...
I have been able to use this out of the (xampp) box. 1. How can I tell which mechanism it's using for the MSSQL connection (MSSQL_CONNECT) - i.e. ODBC, PDO etc 2. How can I force it to use...
Could anyone assist with a problem I am having with a User Registration form where I am trying to pull data from a multi-select drop down box and use PHP to save it to a mySQL database. All th...
I am trying to create a banner across the website. While the code below does create the banner size I need,  a single picture comes out too stretched. Therefore I would like to put two or thre...
A timeout of the PHP session is detected with isset(a_session_variable), and then redirection with     header('Location: http://www.dommain');    exit(); But this is code is within an ...
Hi there, I have a problem with php and postgresql.  On my dev install I have some php scripts running that  successfully make use of the php_pgsql.dll extension for PHP5. I transferred ...
Hi friends, I want to create unique 16 digit alpha numeric keys for a value. for example $alphaNumeric = generateAlphaNumeric(51); i need a result like this  "ACADRT478965BNXY" ...
Hi I have a problem, using curl with php to connect to other service. Below is the fragment of code doing this. As you see the timeout is set to 10 sec. but sometimes I get the following er...
I am working with an API and trying to figure out how I can do a multipart/form-data POST request with cURL. I'm trying to send an image using cURL. Any help is appreciated thanks!
Hi, dear EE sitizens! I will really happy if you show me the code for image perspective (or free) distortion. It can be two functions: 1. Enter the angle for rotation (and only right si...
Hello, I want to replace this character: ? from a php string. I want to replace it quote character: " in the string variable. Example: I have this variable: $text = 'this is my ex...
I have a word file in my server.. I would like to display that word document in the page with all formatting using PHP..
I have a flash app that need to load and save xml data.  Since flash doesn't do this it's self, I'm using PHP on the backend.  So in order to allow the user to select a local file  the app upl...
We are having an issue with existing code that is running well under php 4.2 but seems to give permissions errors with php 5 as we are trying to move to a new server and testing. Exact erro...
I need a simple php script that will get the current date, add 10 days to it, and then print it out in the format: Day (Ex. Tuesday), MM/DD/YYYY This is relatively simple but I don't kno...
Hello, I have just discovered that the same php code works in IE but not in the FireFox browser, having to do w/ setting Session variables. Even something simple like $_SESSION['test']="hel...
Hello, I'm developing a site using simpleXML and so far have not had any problems. However I now need to access an attribute. My normal way of accessing the XML is like this; $xml = s...
i need blinking text on web page, i got this by using below mentioned script only when i use <blink> tags within html in Internet Explorer, but if picked the data along with tags from database...