Jump to content

Help for an html beginner? PLEASE?


zoso729

Recommended Posts

Hello,

 

Im trying to create a loop to display a set of asterisks to create a set of "stairs."

 

example:

*

**

***

****

*****

******

*******

 

Im not very good at html and everything Ive tried has failed.

 

Does anyone have any suggestions or samples?

 

Thanks a lot, i REALLY appreciate any help at all!

Link to comment
https://forums.phpfreaks.com/topic/48825-help-for-an-html-beginner-please/
Share on other sites

You need something like this, embedded in your HTML:

<?    //starts PHP

$asterisks="***************";

$no_of_stairs=10;

for( i from 1 to $no_of_stairs)

{

echo substring($asterisks,$i);

}

?>  // ends PHP

The above won't work, but it will get you started.  I suggest you concentrate on the above as a PHP file:  paste it into a text editor and save it as, say stairs.php in your cgi-bin folder.  (I'm assuming you have a website capable of PHP.)

Check out keywords (eg for, substring) in the PHP manual:

http://www.php.net/manual/en/

to get the code working

Cheers 

  scdas

 

Im trying to create a loop to display a set of asterisks to create a set of "stairs."

 

example:

*

**

***

****

*****

******

*******

 

Im not very good at html and everything Ive tried has failed.

 

Does anyone have any suggestions or samples?

 

Thanks a lot, i REALLY appreciate any help at all!

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.