Jump to content

[SOLVED] Separating a variable into 2


denhamd2

Recommended Posts

great thanks :) also finally one last small thing:

 

I have the day stored in a variable $day_num

 

its currently spitting out days 1-9 as "1", "2", etc.

 

is there any way of formatting $day_num to make it 2 digits, ie. "01", "02", etc?

Link to comment
Share on other sites

heres the part in question:

 

//sets the first day of the month to 1
$day_num = 1;

//count up the days, untill we've done all of them in the month

while 
( $day_num <= $days_in_month ) 
{ 

echo "<td>$day_num<br><input name=\"$day_num$month$year\" type=\"checkbox\" value=\"yes\"></td>\n"; 
$day_num++; 
$day_count++;

Link to comment
Share on other sites

here is the rest of the code:

 

//sets the first day of the month to 1
$day_num = 1;

//count up the days, untill we've done all of them in the month

while 
( $day_num <= $days_in_month ) 
{ 

echo "<td>$day_num<br><input name=\"$day_num$month$year\" type=\"checkbox\" value=\"yes\"></td>\n"; 
$day_num++; 
$day_count++;

//Make sure we start a new row every week
if ($day_count > 7)
{
echo "</tr><tr>";
$day_count = 1;
}

} 


//Finaly we finish out the table with some blanks if needed
while 
( $day_count >1 && $day_count <=7 ) 
{ 
echo "<td> </td>"; 

$day_count++;
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.