Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~766 People Reached
Interests
Programming, song, Cricket
Favorite Tags
Member Avatar for invoguesoft.com

Hi, www.invoguelogo.com is a logo design and downloading site. It has a collection of different types of logo. Whenever I try to search in google by related logo design keyword, I can’t found my website in the search result. How can I improve ?

Member Avatar for jewelraz
0
256
Member Avatar for gabbytheking

Hi I'm doing this for a project so no need to worry about real world worries such as encription etc. I'm trying to put imported Values into the below form via a seperate php form on a different site. ie my website is a client of an online creditcard server(CCS) …

Member Avatar for veedeoo
0
354
Member Avatar for invoguesoft.com

<?php function my_money_format($num){ $money=explode('.',$num); if(strlen($money[1])==0) $money[1]='00'; if(strlen($money[0])==0) $money[0]='0'; if(strlen($money[0])>2){ $taka=$money[0]; $thousand=substr($taka, -3); $taka=substr($taka,0,strlen($taka)-3); $i=0; while(strlen($taka)>0){ if(strlen($taka)>1){ $pp[$i]=substr($taka, -2); $taka=substr($taka,0,strlen($taka)-2); }else{ $pp[$i]=substr($taka, -1); $taka=substr($taka,0,strlen($taka)-1); } $i++; } for($j=sizeof($pp)-1;$j>=0;$j--) $taka_add .=$pp[$j].','; return $taka_add.$thousand.".".$money[1]; }else return $money[0].".".$money[1]; } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; …

Member Avatar for Dani
-1
156