Advertisement

Experts have come up with some helpful tips for getting a solution to your problem fast.

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Top PHP Solutions: 1 - 25 of 1636
 
$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...
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 ...
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...
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...
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...
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 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...
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...
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...
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...
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 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!
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...
I have a word file in my server.. I would like to display that word document in the page with all formatting using PHP..
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...
Hi expert, I am trying to use Classic version of CalendarXP (www.calendarxp.net/). Its ok. But I am facing another problem. You know Classic version of CalendarXP has three DropDownLists(fo...
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...
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...
below ic a copy of my array, I would like to know how to get the position of a particular element eg  get the position of 1998
Hi folks, Just confirming.  A client has (for some unknown reason) created two different MySQL databases and now want to create a query in PHP that pulls both tables into a JOIN. We are ...