the correct way to
test this without triggering a Notice error?Ron
Ron Piggott
www.TheVerseOfTheDay.info
===
Can any of you tell me why this is happening?
Ron Piggott
www.TheVerseOfTheDay.info
Thank you for the help. Very much appreciate it.
Ron Piggott
www.TheVerseOfTheDay.info
-Original Message-
From: Shawn McKenzie
Sent: Saturday, February 02, 2013 1:43 PM
To: php-general@lists.php.net ; Ron Piggott
Subject: Re: Integer
On 02/01/2013 10:40 PM, Ron Piggott wrote
In the following the “2.” means a moderator response and “25” is the account #
of the moderator.
How can I get the 25 by itself?
- I want to drop the “2.” and remove all the zero’s
Would it be best to turn this into a STRING?
Any suggestions?
Ron Piggott
www.TheVerseOfTheDay.info
really a hyphen?
Ron
Ron Piggott
www.TheVerseOfTheDay.info
Is it possible for PHP to accept the following as a date:
04:11:22 Aug 21, 2011 PDT
so I may output it as:
gmdate(‘Y-m-d H:i:s’)
- I want the time zone included
Ron
Ron Piggott
www.TheVerseOfTheDay.info
ts the member’s account #. It is an
auto_increment value in a mySQL table
The “value” ( 17,14,0,1,0 ) represents their score.
The application for this is a list of the top users. If someone has 0 points I
don’t want to include them.
Any thoughts? Any help is appreciated.
R
On Mon, Jul 2, 2012 at 2:54 PM, Ron Piggott
wrote:
Is there a way to test a variable contains a valid date
- 4 digits for the year
- 2 digits for the month (including leading 0)
- 2 digits for the day (including leading 0)
OR
- a function?
You may want to check out checkdate
I am trying to represent the variable:
$row['Bible_knowledge_phrase_solver_game_question_topics_1']
Where the # 1 is replaced by a variable --- $i
The following code executes without an error, but “Hello world” doesn’t show on
the screen.
What needs to change? Ron
R
echo name_of_a_different_function( $flag1 , $flag2 );
}
===
The error I am receiving is “Call to undefined function
name_of_a_different_function”
Thanks, Ron
Ron Piggott
www.TheVerseOfTheDay.info
e error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting
T_STRING or T_VARIABLE or T_NUM_STRING
Can anyone see what I have done wrong and help me correct it? Thank you. Ron
Ron Piggott
www.TheVerseOfTheDay.info
echo "http://www.theverseoftheday.info/store-images/"; .
$image_{$i} . "\" title=\"Image " . $i . "\">Image " . $i . "\r\n";
}
++$i;
}
===
How do I substitute $i for the # so I may use a WHILE loop to display the
images? (Not all 4 variables have an image.)
Ron Piggott
www.TheVerseOfTheDay.info
My web site is used by people from approximately of 90 countries.
- I will use just "name" instead of first name / last name.
- e-mail address
Ron Piggott
www.TheVerseOfTheDay.info
-Original Message-
From: Alain Williams
Sent: Saturday, November 19, 2011 11:29
e
- If the person has included their middle name, middle initial or degrees
(“Dr.”)
- If last name has multiple words
Also the formatting of the from field changes in various e-mail programs:
From: Ron Piggott
From: "Ron Piggott"
From: ron.pigg...@actsministries.org
From:
If there
know the rule is working because I receive an empty e-mail, just not
passing the e-mail content
Ron Piggott
www.TheVerseOfTheDay.info
-Original Message-
From: tamouse mailing lists
Sent: Saturday, November 12, 2011 4:04 AM
To: Ron Piggott
Cc: php-general@lists.php.net
Subject:
I am looking at CPanel’s “E-Mail filtering” option “Pipe To A Program”
http://docs.cpanel.net/twiki/bin/view/AllDocumentation/CpanelDocs/FilterOptions
The goal I am working towards is saving the contents of an incoming e-mail
address into a mySQL table. I am thinking of trying to program a cust
If $correct_answer has a value of 3 what is the correct syntax needed to use
echo to display the value of $trivia_answer_3?
I know this is incorrect, but along the lines of what I am wanting to do:
echo $trivia_answer_$correct_answer;
$trivia_answer_1 = “1,000”;
$trivia_answer_2 = “1,250”;
$tr
www.TheVerseOfTheDay.info
-Original Message-
From: Richard Quadling
Sent: Friday, September 30, 2011 2:53 PM
To: Ron Piggott
Cc: php-general@lists.php.net
Subject: Re: [PHP] RSS Feed Accented Characters
On 30 September 2011 18:22, Ron Piggott wrote:
-Original Message
-Original Message-
From: Richard Quadling
Sent: Friday, September 30, 2011 12:31 PM
To: Ron Piggott
Cc: php-general@lists.php.net
Subject: Re: [PHP] RSS Feed Accented Characters
On 30 September 2011 17:26, Ron Piggott wrote:
I am trying to set up an RSS Feed in the Spanish language
I am trying to set up an RSS Feed in the Spanish language using a PHP cron job.
I am unsure of how to deal with accented letters.
An example:
This syntax:
" . htmlentities("El Versículo del Día") .
"\r\n";
?>
Outputs:
El Versículo del Día
When I use an RSS Feed validator I receive the
Is there a way to only change accented characters and not HTML (Example:
)
The syntax
echo htmlentities( stripslashes(mysql_result($whats_new_result,0,"message")) )
. "\r\n";
is doing everything (as I expect). I store breaking news within the database
as HTML formatted text. I am tryin
Hi Everyone
I am trying to load an HTML book into mySQL. The book was distributed with
each chapter being it’s own HTML file.
The only way I know how to open a file is by specifying the file name. Such as:
$myFile = "B01C001.htm";
$lines = file($myFile);
foreach ($lines as $line_num => $theD
I am trying to figure out if it is possible to have PHP work within an XML
document.
The application is tracking RSS subscribers IP addresses within the database.
I have wrote functions so the PHP code required is below is minimal, after the
XML declaration line.
Prior to posting this quest
Is there a way to stream line this:
if ( ( $val <> "with" ) AND ( $val <> "from" ) ) {
Ron
The Verse of the Day
“Encouragement from God’s Word”
http://www.TheVerseOfTheDay.info
Is it possible in PHP to sort an array by most frequently occurring word /
phrase, 2nd most frequently occurring, third, etc.
An example array is:
Array ( [1] => Parable [2] => Mustard [3] => Seed [4] => Parable [5] => Good
[6] => Samaritan [7] => Parable [8] => Workers [9] => Vineyard [10] =>
I am writing a shopping cart using the PayPal API. Shopping cart works. Just
adding additional functionality.
>From the shopping cart contents I am trying to make it so the user may click
>on a picture of a trash can to delete the item. I wrote the following line of
>code:
http://www.the
On Mon, May 2, 2011 at 3:16 PM, Ron Piggott
wrote:
Is it possible to write a function with an optional flag? What would the
syntax look like?
So far I have:
function load_advertisement( $web_page_reference ,
$web_advertising_sizes_reference ) {
Hi Ron:
I'm not sure what you
Is it possible to write a function with an optional flag? What would the
syntax look like?
So far I have:
function load_advertisement( $web_page_reference ,
$web_advertising_sizes_reference ) {
Thanks Ron
The Verse of the Day
“Encouragement from God’s Word”
http://www.TheVerseOfTheDay.info
I am trying to figure out a syntax that will replace each instance of % with
a different letter chosen randomly from the string $puzzle_filler.
$puzzle_filler is populated with the letters of the alphabet, roughly in the
same ratio as they are used.
This syntax replaces each instance of % wi
I need help to know how to sort the words / phrases in my array.
Variable name: $words_used
print_r( $words_used ); Current output: Array ( [187] => Sin [249] => Punished
[98] => Sanctuary [596] => Sing [362] => Anointing Oil )
Desired result: Alphabetical sort: Array ( [362] => Anointing Oil [2
Is there a way to make this syntax:
$checking_answer = $answer_reference_2;
Equal to:
$checking_answer = $answer_reference_ . ($i + 1);
(where $i = 1)
making $checking_answer take on the value of $answer_reference_2 ?
I am trying to develop a web app quiz and I need to test the users answers
On Jan 21, 2011, at 6:52 PM, Ron Piggott wrote:
Would someone write me a syntax so all the web site addresses in $data turn
into links
$data = “Visit our web site http://www.site.com, http://www.secondsite.org
and http://www.thirdsite.info.”;
My desired results for what I am asking
The following solution works:
I set my user-agent to:
VerseOfTheDaySitemapRobot/1.0 (http://www.TheVerseOfTheDay.info)
By doing:
ini_set('user_agent', "VerseOfTheDaySitemapRobot/1.0
(http://www.TheVerseOfTheDay.info)");
When ran by a cron job this causes AWSTATS to treat the hits as:
Unknown r
: Shreyas Agasthya
Sent: Monday, November 29, 2010 1:35 AM
To: Ron Piggott
Cc: PHP General List
Subject: Re: [PHP] Fw: Spoofing user_agent
Ron,
Can you let us know if this whole thing that you were trying to do worked? I
see that very few actually bring a thread to a logical conclusion either by
I am unable to retrieve the value of $referral_1 from:
$new_email = mysql_escape_string ( $_POST['referral_$i'] );
why?
PHP while lopp to check if any of the fields were populated:
$i=1;
while ( $i <= 5 ) {
$new_email = mysql_escape_string ( $_POST['referral_$i'] );
if ( strle
Is "User Agent" suppose to have a hyphen "-" ? Ron
The Verse of the Day
“Encouragement from God’s Word”
http://www.TheVerseOfTheDay.info
-Original Message-
From: Richard Quadling
Sent: Thursday, November 25, 2010 9:16 AM
To: Deva
Cc: Shreyas Agasthya ; Ron P
od’s Word”
http://www.TheVerseOfTheDay.info
From: Shreyas Agasthya
Sent: Thursday, November 25, 2010 4:21 AM
To: Ron Piggott
Cc: php-general@lists.php.net ; a...@ashleysheridan.co.uk
Subject: Re: [PHP] Fw: Spoofing user_agent
A standard HTTP Request headers is : User Agent (without the underscore).
--S
Thanks. Ron
The Verse of the Day
“Encouragement from God’s Word”
http://www.TheVerseOfTheDay.info
From: Shreyas Agasthya
Sent: Thursday, November 25, 2010 4:21 AM
To: Ron Piggott
Cc: php-general@lists.php.net ; a...@ashleysheridan.co.uk
Subject: Re: [PHP] Fw: Spoofing user_agent
A standard
Is this what you are telling me to do:
header('user_agent: RonBot (http://www.theverseoftheday.info)');
Ron
The Verse of the Day
“Encouragement from God’s Word”
http://www.TheVerseOfTheDay.info
From: a...@ashleysheridan.co.uk
Sent: Thursday, November 25, 2010 3:34 AM
To: Ron Pig
I have wrote a script to generate a sitemap of my web site. It crawls all of
the site web pages. (About 30,000)
I need help to spoof the user_agent variable so the stats program running in
the background ( “AWSTATS” ) will treat the crawl as a bot, not browsing usage.
The sitemap generat
I am using this syntax to check for a valid e-mail address
list($userName, $mailDomain) = split("@", $buyer_email);
if (checkdnsrr($mailDomain, "MX")) {
if no domain is provided ( ie e-mail address is something like “ron” with no @
) the following error is displayed:
Warning: checkdnsrr() [fu
I am writing a custom function and I need to be able to retrieve 3 values from
it.
string_parse_tool ( $string_to_parse )
The 3 variables I need to retrieve from the function are:
$string_to_parse
$string_to_display
$continue_parsing
I only know how to retrieve 1 variable from a function, not
I am writing a string parsing function.
I need to return 3 values from a function:
return $string_to_display;
return $string_to_parse;
return $continue_parsing;
I am not sure how to retrieve these variables.
The Verse of the Day
“Encouragement from God’s Word”
http://www.TheVerseOfTheDay.info
6))?strpos('',$activity_description_result,
76):strlen($activity_description_result);
Ron
The Verse of the Day
“Encouragement from God’s Word”
http://www.TheVerseOfTheDay.info
From: a...@ashleysheridan.co.uk
Sent: Sunday, November 14, 2010 4:58 PM
To: Ron Piggott ; php-general@lists.
How would I write an IF statement that looks for the first space space (“ “)
left of the 76th character in a string or , which ever comes first --- OR
the end of the string (IE the string is less than 76 characters long? I
specifically want is it’s character position in the string. Ron
The Ve
gt; //personal use
> if ( isset($value[2]) && isset($value[2]['quantity']) )
> {
> $personal_quantity = $value[2]['quantity'];
> }
>
>
> Technically the above IF's are optional, but they are proper syntax.
>
> I don't know how you are
I am writing a custom shopping cart that eventually the "cart" will be
uploaded to PayPal for payment. I need to be able to include the option
that the purchase is a gift certificate.
At present my "add to cart" function goes like this:
===
# Gift Certificate: 1 is a gift; 2 is personal use
Am I on the right track? I don't know what to do with the second "FOREACH"
$val) {
$$key = $val;
echo $key . ": " . $val . "";
if ( $val == "Array" ) {
$i=0;
foreach ($val) {
echo "$val[$i]";
I am trying to process a form where the user uses checkboxes:
Sharp
Stabbing
Jabbing
When I do:
foreach($_REQUEST as $key => $val) {
$$key = $val;
echo $key . ": " . $val . "";
}
The output is:
painDesc: Array
I need to know the values of the array (IE to know what the user is
If $message_body contains:
$message_body="You are subscribed using u...@domain. To update";
How do I capture just the e-mail address?
Ron
I am not understanding why 'true' isn't the result of this syntax because
$subjects equals:
$subjects = "Delivery Status Notification(Failure)";
Here is my syntax:
if ( stristr( $subjects, "Delivery Status Notifcation(Failure)" ) ) {
$TIRSFlag = true;
echo "true";
}
AHH. The count() command does the trick. Ron
-Original Message-
From: Ron Piggott
Reply-to: ron.pigg...@actsministries.org
To: Martin Scotta , phps...@gmail.com
Cc: a...@ashleysheridan.co.uk, PHP General
Subject: Re: [PHP] Array
Date: Sat, 24 Oct 2009 11:43:12 -0400
The code I have
o.uk
Cc: ron.pigg...@actsministries.org, PHP General
Subject: Re: [PHP] Array
Date: Sat, 24 Oct 2009 11:50:14 -0300
On Sat, Oct 24, 2009 at 7:59 AM, Ashley Sheridan
wrote:
On Sat, 2009-10-24 at 06:57 -0400, Ron Piggott wrote:
> The following line gives me an er
heridan
Reply-to: a...@ashleysheridan.co.uk
To: ron@actsministries.org
Cc: PHP General
Subject: Re: [PHP] $_SESSION variables
Date: Sat, 24 Oct 2009 12:52:17 +0100
On Sat, 2009-10-24 at 07:52 -0400, Ron Piggott wrote:
> Instead of doing:
>
> $_SESSION['order'][$reference][
Instead of doing:
$_SESSION['order'][$reference]['quantity'] = 0;
Is there a way to get remove that part of the array altogether?
Ron
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
The following line gives me an error message when there aren't any
values in the array --- how do I accommodate this?
Warning: Invalid argument supplied for foreach()
foreach ($_SESSION['order'] AS $key => $value ) {
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: htt
Thanks; Amazing. Ron
- Original Message -
From: "Ashley Sheridan"
To: "Richard Heyes"
Cc: "Ron Piggott" ;
Sent: Saturday, August 22, 2009 9:02 AM
Subject: Re: [PHP] Rounding down?
On Sat, 2009-08-22 at 13:00 +0100, Richard Heyes wrote:
Hi,
> Is
Is there a way to round down to the nearest 50?
Example: Any number between 400 and 449 I would 400 to be displayed; 450 to 499
would be 450; 500 to 549 would be 500, etc?
The original number of subscribers is from a mySQL query and changes each day.
I am trying to present a factual statement:
How do I change this ELSEIF into an array?
} elseif ( ( $page <> "" ) AND ( $page <> "home_page" ) AND ( $page <>
"verse_of_the_day_activate" ) AND ( $page <> "member_services" ) AND ( $page <>
"member_services_login" ) AND ( $page <> "member_services_logoff" ) AND ( $page
<> "resource_center"
Yes I did. Thank you for confirming this with me. Ron
- Original Message -
From: "LinuxManMikeC"
To: "Ron Piggott"
Cc: ;
Sent: Saturday, August 08, 2009 6:19 AM
Subject: Re: [PHP] str_replace
On Sat, Aug 8, 2009 at 2:08 AM, Ron Piggott
wrote:
Am I under
Am I understanding str_replace correctly? Do I have this correct or are '
needed?
$bible_verse_ref is what I want to change to (AKA replace)
bible_verse_ref is what I change to change from (AKA search)
$text_message_template is the string I want to manipulate
$text_message = str_replace( $bible
#x27;);
echo "Width: " . intval($product_width_inch) . " " .
$interval[$product_width_inch-intval($product_width_inch)] . "" x
Height: " . intval($product_height_inch) . " " .
$interval[$product_height_inch-intval($product_height_inch)] . "&qu
Is there a way to remove the trailing '0'?
Also is there a way to have the original fraction display (1/4), as well
as have provision for 1/8 and 3/8 and 1/2, etc. display?
Width: 2.250" x Height: 6.250"
Ron
I am not understanding how to do inline images with the PEAR Mail
module. I am new to using this PEAR Mail module.
I give the command:
$mime ->
addHTMLImage("/home/thev4173/public_html/images/email_cross.gif");
It offers the image as a file attachment, and not displaying it within
the c
I am needing to put this into one specific PHP script. What would the
ini_set look like? Ron
On Sat, 2009-04-25 at 06:43 +0530, kranthi wrote:
> if u cant change the configuration settings of php.ini
> use http://pear.php.net/package/Mail
> alternatively u can also hav ini_set on top of every
I am on a shared web site hosting company. They are asking me to edit
my PHP script to specify the SMTP using $aditional_parameters on the URL
below. If this can't be achieved then I need to confirm this.
Ron
On Fri, 2009-04-24 at 20:04 -0500, Adam Williams wrote:
>
> Ron Pi
How do I specify an actual SMTP server? (Like mail.host.com)
This is what I have so far:
mail($email, $subject, $message, $headers);
I was to http://ca2.php.net/manual/en/function.mail.php and saw this
syntax:
mail ( string $to , string $subject , string $message [, string
$additional_headers
Thanks Chris. It has been a while since I used this command. Ron
On Mon, 2009-04-20 at 13:27 +1000, Chris wrote:
> Ron Piggott wrote:
> > Where $date_reference is 2009-04-18 the following code gives me a day of
> > 1969-12-30. How do I get it to be 2009-04-17?
> >
Where $date_reference is 2009-04-18 the following code gives me a day of
1969-12-30. How do I get it to be 2009-04-17?
$previous_date = strtotime("-1 days", $date_reference);
$previous_date = date('Y-m-d', $previous_date);
echo $previous_date; outputs 1969-12-30
Ron
Thanks. I got my script updated. Ron
On Sun, 2009-04-12 at 22:33 +0600, 9el wrote:
>
>
>
> One thing you should know is that when you use $_GET, you'll
> be sending a little information about the particular page to
> the browser and therefore it would be dis
How do I know when to use $_GET verses $_POST?
Is there a pre defined variable that does both?
Ron
I am moving my web site to a new host this weekend. I am working
towards making the code compatible to the structure of the new server.
I am getting a weird response which I don't understand
At the very start of my index.php I have the following lines of code:
foreach($_GET as $key => $val) {
$
Does anyone know how to make a ZIP file using PHP? This is for an
application where the files the user selected will be put into a ZIP
file and then the ZIP file made available for download. Ron
Is there a way to pause a PHP script while it is executing? Ron
How do I tell if
words_from_the_well
is not the value of $page (whether it is the entire value of $page OR
within the value of $page)
So far I have come up with the following, but it doesn't deal with when
$page is only within the value of $page
if ( $page <> "words_from_the_well" ) {
Ron
How do I determine the value oftx from this string?
page/words_from_the_well_checkout/?tx=8UM53005HH344951T&st=Completed&amt=0.01
My desired answer is: 8UM53005HH344951T
I am trying to capture the serial number which follows tx= and ends
immediately before the &
Ron
Is there a way to specify an already existing file to use as the
background, instead of a specific color, such as what
http://ca.php.net/manual/en/function.imagefill.php illustrates? Ron
Is there a way to modify this code so it will always be the *next*
Christmas and Easter?
";
echo $days_until_Easter . "";
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Is there a way to find out the number of pixels wide and high an image
is in PHP?
Is there a way to resize an image using PHP?
Ron
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I would like to parse the URLs in the values after the domain name.
The URLs are the results of mod re-write statements.
Example 1:
http://www.domain.com/page/file/
The desired results would be:
$web_page_access[1] = "file"
Example 2:
http://www.domain.com/page/file/2/
The desired resu
I am tweaking a blog application I have programmed. I am trying to
display a Google ad half through the blog entry, at the first available
.
The code I use so far is:
$half_way = strlen( nl2br(stripslashes($entry))) /2 ;
$ad_position = strpos ( nl2br(stripslashes($entry)) , "" ,
$half_way );
e
I am needing to pass 2 variables in a script I am writing. Does anyone
know how to do this?
http://www.domain.com/blog/1/2/
I know how to pass 1; I have no idea how to write a rewrite rule to pass
the 2 as well.
Thanks,
Ron
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, v
Oops
Logins are from
http://www.rons-home.net/page/login-greeting/
Blog postings are from
http://www.rons-home.net/blog/28/
with the word 'page' gone the session variable doesn't acknowledge the
login.
Ron
On Sat, 2008-10-11 at 21:12 -0400, Ron Piggott wrote:
> I did
I did some more testing. The URL is the problem.
Logins are from
On Sat, 2008-10-11 at 19:59 -0400, Daniel Brown wrote:
> On Sat, Oct 11, 2008 at 7:49 PM, Ron Piggott <[EMAIL PROTECTED]> wrote:
> > I am programming a blog.
> >
> > index.php sets up the layout for t
ssion
variables ...
Any thoughts?
Ron
On Sat, 2008-10-11 at 19:59 -0400, Daniel Brown wrote:
> On Sat, Oct 11, 2008 at 7:49 PM, Ron Piggott <[EMAIL PROTECTED]> wrote:
> > I am programming a blog.
> >
> > index.php sets up the layout for the web page. This includes t
I am programming a blog.
index.php sets up the layout for the web page. This includes the
heading, left hand and bottom menus.
The content is loaded by the command:
include($filename);
the $_SESSION variables aren't available to files like blog.php . The
session variables only work in the
rsten wrote:
> For the second question:
> http://us.php.net/manual/en/function.strpos.php
> http://us.php.net/manual/en/function.str-replace.php
>
> Thank you,
> Micah Gersten
> onShore Networks
> Internal Developer
> http://www.onshore.com
>
>
>
> Ron Pig
I have a series of questions.
How do I count the number of 's in a string?
How do I add text in the middle of a string, let's say after the 3rd
Ron
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
How do I display the first 5 characters of a string?
$string="abcdefghijklmnopqrstuvwxyz";
my desired output is
abcde
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
How do I check if http:// is at the beginning of $web_site and if it
isn't add it? Ron
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Is there a way to add
midway through a string, following the first available space?
Example:
The cat jumped up high.
This is 23 characters long. I want added after the 12th character,
following the first space:
The cat jumped up high.
would be the desired output.
Ron
--
PHP General
I am trying to scramble individual words and/or phrases.
When it is a phrase I would like to keep the letters of each word
together, with a space between each one. The code I have so far is
below. I use PHP 4.4.7. The code below is fine for a single word; it
is phrases that I am now trying to
Is there a way to output the results with a space between each
character?
$shuffled = str_shuffle($str);
On Sat, 2008-07-05 at 01:20 +0200, Stefano Esposito wrote:
> On Fri, 04 Jul 2008 18:52:49 -0400
> Ron Piggott <[EMAIL PROTECTED]> wrote:
>
> > I am using PHP 4
&g
I am using PHP 4
I am trying to figure out how to scramble a word.
Example: hello so the output might be elolh
Any ideas?
Ron
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
user the database was updated. The first thing that happens
is the code you gave me below. How do I resolve this error? I get the
concept of functions, but this isn't an area of PHP that I have used
before.
Ron
On Sun, 2008-06-22 at 23:40 -0700, Jim Lucas wrote:
> Ron Piggott wrote:
I am writing a form right now.
I would like to make the checkbox an array variable. The first part of
the array is the component reference, the second part is the package
reference. What name would you assign to it that I could use in
processing the form in the PHP script this posts to?
Ron
How would I do this for a street address?
If the user gave me their address as "12 george street" I would like the
results to be 12 George Street.
Ron
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
How do I make the first letter of a variable be a capital?
I am using this with names. If the user types "ron" I want to save it
as "Ron".
Thanks for your help.
Ron
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I am writing a shopping cart.
Products assigned in the following fashion:
$_SESSION['selection'][$product]=$quantity;
I am wanting to display the list of products in the shopping cart in a
list for the user to see as they continue shopping.
I put the SESSION variable into $cart
$cart = $_SESSIO
I am wanting to change
echo " 'January', '2' => 'February', '3' => 'March', '4'
=> 'April', '5' => 'May', '6' => 'June', '7' => 'July', '8' => 'August',
'9' => 'September', '10' => 'October', '11' => 'November', '12' =>
'December');
$current_month = DATE("n");
echo "\r\n";
foreach (ra
1 - 100 of 133 matches
Mail list logo