I have a list of checkboxes that submits and is processed like this :
<?
foreach ($check_id as &$value) {
echo $value;
?><br />
<?
}
?>
That works fine except I would rea...
Hello
When i uplode image (>650kb) to server by upload form, for me show error "
Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 7776 bytes) in C:\Inetpub\vho...
I am trying to generate pdfs and my code works only for 20 rows from database...if I increase the number of rows, it gives me this error
The connection to the server was reset while the pag...
We run the MPee3 MP3 Search Engine at http://www.mpee3.com and we need a java or php code that we can add to our search result page so that when the user clicks a .mp3 link that it will force\...
Dear all,
I have a function to remove all the links from a chunk of html content.
It takes away all the <a ...> and </a> tags...
I'm using the function preg_match_all()
How could I...
well... been thinking about this whole day,
but diodn't really found out how to do this.
now my question is does anybody know how to do this?
Hi
We are using php to create a csv file and then automatically ftp to a server for processing (its a selection of products for using with the google service froogle)
We are a bit stuck...
Hi,
I have a textarea box that a user can fill in. If this text box contains more than 100 characters (or whatever value I want) the user is told via an error message that the number of cha...
I use this PHP script for download file, to Hide direct link of file, or for authenticate before Download.
But this code is not allow Resume Download from client (for example , client uses so...
I have a CSV file exported by Exchange which contains address / contact information. Some of these values contain foreign characters so they're encoded in unicode.
If I export the CSV witho...
Mediawiki 1.11.
I need to require users to login to edit.
How is that done?
Thanks.
HI
I'm trying to work out date differences between two dates,
1) "today" ie. date('Y-m-d') and
2) $mydate => a date also in Y-m-d format.
I tried something like this:
<?php
$expiry_...
Hi,
I have been thinking of the following problem the last couple of days without being able to solve it.
I have two arrays with values e.g.
$a1 = array( 0 , 1 , 4 );
$a2 = array( 4...
Hi! I'm looking for a method to create a tree structure or hierarchy from an array like the one below. Is it possible?
Hi,
I would like to know if anyone has successfully used either of these 2 to access GMAIL via IMAP:
Gmail Lite: http://gmail-lite.sourceforge.net/wordpress/
Roundcube: http://roundcube...
Take name/string:
John Doe
Split into:
$first_name = "John";
$last_name = "Doe";
So, split where space character is.
Hi experts.
I have the following code.
$params['REC_LOC'] = "h57e3k";
$params['DIRECT_RETRIEVE_LASTNAME'] = "smith";
$value = 'n483ngrkhr38bt2'; #Session ID in this case
$ch_one = c...
Currently working on grabbing a future timestamp and subtracting it from the current time to display a live on refresh countdown timer. It should display days, hours, minutes, seconds until th...
I have an array storing
"10", "11", "12", "13", "14"
"20", "21", "22", "23", "24"
"30", "31", "32", "33", "33"
Obviously, this is a 2D array, so array[0][0] is "10", array[0][1] is "11"....
I am logging the Remote Address using PHP.
Is there anyway to log the remote computer name as well?
If anyone can offer some help on this:
How it currently works:
I post an image on any website/forum, this image is located on my site. Through .htaccess I redirect the image to a .php file...
I need to display files through a PHP script. I made me a script named files.php. I call the files as files.php?id=123213 for example.
I get the file to display, or download - regarding if ...
I need to turn off PHP error notices using the htaccess file.
How is this done? I've done it loads of times but I just can't seem to remember.
I need to generate unique ticket numbers for an online raffle that could have around 100k tickets or so generated. I've currently got this part setup very simple:
$RandomNumber = rand(1000...
I need to connect to Vertical Response's web service with PHP5 and the built in SOAP client.
The problem is that GoDaddy requires HTTPS connections to go through a proxy and I don't know how...