User Profile

Collapse

Profile Sidebar

Collapse
fogsys
fogsys
Last Activity: Jun 28 '10, 03:58 PM
Joined: Apr 21 '10
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • fogsys
    replied to css menu bar
    Thank you JKing you are the best!
    See more | Go to post

    Leave a comment:


  • fogsys
    replied to css menu bar
    I am trying to replicate the one that has 2 colors
    blue and red.and the picture of the joypad in between
    See more | Go to post

    Leave a comment:


  • fogsys
    replied to css menu bar
    anybody ? any kind of help ?
    See more | Go to post

    Leave a comment:


  • fogsys
    started a topic css menu bar

    css menu bar

    I am trying to create a menu bar like the one on mlgpro dot com

    I have created a regular one on mlggear dot com
    trying to split it, add a different color and a picture in between.
    any kind of code,help or suggestions is greatly appreciated
    See more | Go to post

  • fogsys
    started a topic How to rename file for each download request
    in PHP

    How to rename file for each download request

    ok here is what Im trying to create:
    simple code that renames the file to be downloaded each time someone downloads it.
    example:
    you download my file, it will be rename to smth different that way you cant access the file using that URL anymore

    here is the code:
    for some reasons the renaming part doesnt work.
    any input would be greatly appreciated
    as122223333443. txt = the new generated name is updated...
    See more | Go to post

  • fogsys
    replied to display results of mysql query in template
    in PHP
    oh and just for info,im using the phplib template
    if you google it its the first link.But Im trying to figure it out myself.thank you again
    See more | Go to post

    Leave a comment:


  • fogsys
    replied to display results of mysql query in template
    in PHP
    thank you sir. I am trying it right now. will confirm as soon as I implement it
    See more | Go to post

    Leave a comment:


  • fogsys
    replied to display results of mysql query in template
    in PHP
    any example?
    to assign a variable to the template you use :
    $template->assign_vars(ar ray(
    'PRODUCT' => $row['product_title']
    'variable' => $variable
    etc etc))
    See more | Go to post

    Leave a comment:


  • fogsys
    started a topic display results of mysql query in template
    in PHP

    display results of mysql query in template

    Code:
    $result = mysql_query("SELECT * FROM product inner join members ON product_member_id = members_sid WHERE members_username='username'") ;	
    
    while($row = mysql_fetch_array($result))
      {
    	  $template->assign_vars(array(
    		'PRODUCT' => $row['product_title'],
    		'USERNAME' => $row['members_username'],
    		'COUNTRY' => $row['members_country'],
    		
    	));
    when...
    See more | Go to post
    Last edited by Atli; Apr 26 '10, 07:10 PM. Reason: Added [code] tags.

  • fogsys
    replied to mysql query
    in PHP
    got it. thank you guys! I had to define the relationship between them
    See more | Go to post

    Leave a comment:


  • fogsys
    started a topic mysql query
    in PHP

    mysql query

    Code:
    $result = mysql_query("SELECT * FROM product, members WHERE members_username='amino'") // <= put table field here
    or die(mysql_error());  
    	
    while($row = mysql_fetch_array($result))
      {
      echo $row['product_title'] . " " . $row['product_description'] . " " . $row['product_price'];
      echo "<br />";
      }
    	mysql_free_result($result);
    here is...
    See more | Go to post
    Last edited by Dormilich; Apr 26 '10, 08:04 AM. Reason: Please use [code] tags when posting code

  • fogsys
    replied to create a personal url for my users
    in PHP
    Im gonna try it and let you know how it goes.sorry about the delay been working on other functions.getti ng to this one tonight
    See more | Go to post

    Leave a comment:


  • fogsys
    started a topic create a personal url for my users
    in PHP

    create a personal url for my users

    I'm creating user profiles.
    Im trying to find out how to create a personal page.
    for example domain.com/myprofile
    I am familiar with PHP and MySQL.

    Any input would be greatly appreciated. If you guide me in the right direction I ll find out the rest.
    See more | Go to post
No activity results to display
Show More
Working...