Jump to content

archVille

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

archVille's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I want to pass a variable from a form : "<input name='mean".($i+1)."' type='text' size='2' maxlength='2'/>"; to another php page so that to take $mean1 , $mean2 , $mean3 ... How can I concatenate the meanx with the i to have these variables above????
  2. [!--quoteo(post=374058:date=May 15 2006, 02:36 PM:name=michaellunsford)--][div class=\'quotetop\']QUOTE(michaellunsford @ May 15 2006, 02:36 PM) [snapback]374058[/snapback][/div][div class=\'quotemain\'][!--quotec--] sounds like a class project. you'll have to do the math, but you can draw lines using imageline(); [a href=\"http://us3.php.net/imageline\" target=\"_blank\"]http://us3.php.net/imageline[/a] [/quote] I am ok with IMageLine and 2D graphics , this is easy . The problem is when i want to convert coordinates like (x,y,z) to 3d environment. IS there any relational tool or something like that that take as values 3 dimensions and turns into a 3d shape (cube something) ?????????? Thanx anyway.... [img src=\"style_emoticons/[#EMO_DIR#]/wink.gif\" style=\"vertical-align:middle\" emoid=\":wink:\" border=\"0\" alt=\"wink.gif\" /]
  3. Cannot modify header information - headers already sent by This is the message when i enter the below easy and small source code FOR CREATING A FILLED RECTANGLE : <?php header("Content-Type: image/gif"); $im = ImageCreate(100, 100); // colors... $black = ImageColorAllocate($im, 0, 0, 0); $white = ImageColorAllocate($im, 255, 255, 255); // draw rectangle ImageFilledRectangle($im, 25, 25, 75, 75, $white); // Print and destroy the image ImageGIF($im); ImageDestroy($im); ?> After that message i get a lot of unrecognizable string characters ... What is wrong ????? Anyone?
  4. Does anyone know how can i use some values (x,y,z) so to draw a cube ? I have the values written in a plain text . Are there any useful tools for this ? I want to draw 3dimensional object having these values (including laso height of x , height of y , height of z) . Any help appreciated...
×
×
  • 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.