Go Back   Webmaster Malaysia Forum » Website Design & Development » Website Programming

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 30-11-2003, 04:24 PM
Novice Webmaster
 
Join Date: Nov 2003
Location: PJ
Posts: 45
Rep Power: 0
jikey is on a distinguished road
Exclamation i need switch languages in php source code

i need switch languages in php source code do any can help me ?
sure is for free 1 lor.....
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 30-11-2003, 04:36 PM
hymns's Avatar
Senior Webmaster
 
Join Date: Nov 2001
Location: Johor
Posts: 769
Rep Power: 101
hymns is on a distinguished road
Send a message via ICQ to hymns Send a message via Yahoo to hymns
nak translate ke ape ni jikey? dari language ape ke hape?

yak yak! shelamat hari ghaye!
__________________
I hate when:

vBulletin Message:
Sorry! The administrator has specified that users can only post one message every 60 seconds
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 30-11-2003, 05:47 PM
Novice Webmaster
 
Join Date: Nov 2003
Location: PJ
Posts: 45
Rep Power: 0
jikey is on a distinguished road
ai ya bukan translate .... ai saja tukar bahasa
just like english then click a button then will change to malayu or other languages ...... macam page ini http://www.php.net/docs.php
__________________
Online Custume Jewelry Store
www.myasper.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 30-11-2003, 06:31 PM
hymns's Avatar
Senior Webmaster
 
Join Date: Nov 2001
Location: Johor
Posts: 769
Rep Power: 101
hymns is on a distinguished road
Send a message via ICQ to hymns Send a message via Yahoo to hymns
aiiyaa sama la tu... mau sinang u buat dua bahasa la just link la. kalau tatamau kasi buat cookie la.

kasi button link set cookie -> eng/malay

web kasi load

if ($HTTP_COOKIE_VARS["lang"] == "malay") blah.... gitu je la... nak lagi kemas pakai le sql sesatu...
__________________
I hate when:

vBulletin Message:
Sorry! The administrator has specified that users can only post one message every 60 seconds
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 30-11-2003, 06:55 PM
Novice Webmaster
 
Join Date: Nov 2003
Location: PJ
Posts: 45
Rep Power: 0
jikey is on a distinguished road
oic... boleh keh buat sample untuk i tak ?
__________________
Online Custume Jewelry Store
www.myasper.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 01-12-2003, 05:20 PM
white_neck's Avatar
Senior Webmaster
 
Join Date: Jan 2003
Location: dreamland
Posts: 240
Rep Power: 76
white_neck is on a distinguished road
Send a message via Yahoo to white_neck
aku pun nak tau gak
camana?
__________________
^_^ <== stay happy
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 01-12-2003, 05:31 PM
Novice Webmaster
 
Join Date: Nov 2003
Location: PJ
Posts: 45
Rep Power: 0
jikey is on a distinguished road
hymns....
ajar kita di sini ........
__________________
Online Custume Jewelry Store
www.myasper.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 03-12-2003, 07:23 PM
hymns's Avatar
Senior Webmaster
 
Join Date: Nov 2001
Location: Johor
Posts: 769
Rep Power: 101
hymns is on a distinguished road
Send a message via ICQ to hymns Send a message via Yahoo to hymns
ahaks...
sorry aku tgh byk keje. aku free aku post sini yerk. ok tunggu!!
__________________
I hate when:

vBulletin Message:
Sorry! The administrator has specified that users can only post one message every 60 seconds
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 04-12-2003, 05:26 PM
Novice Webmaster
 
Join Date: Nov 2003
Location: PJ
Posts: 45
Rep Power: 0
jikey is on a distinguished road
ok .. janji ya!
__________________
Online Custume Jewelry Store
www.myasper.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 04-12-2003, 07:31 PM
hymns's Avatar
Senior Webmaster
 
Join Date: Nov 2001
Location: Johor
Posts: 769
Rep Power: 101
hymns is on a distinguished road
Send a message via ICQ to hymns Send a message via Yahoo to hymns
try la eh? den tak test pun lagi... hehehe xde mase lah... ade error tu kengkawan lain leh tolong...

PHP Code:
<?
//Malay.php
define("_index","Utama");
define("_index_href","main.php");
define("_links","Pautan");
define("_links_href","links.php");
define("_lang","English");
define("_lang_href","clang.php");
define("_lang_info","Tukar bahasa ke");
?>
PHP Code:
<?
//English.php
define("_index","Main");
define("_index_href","main.php");
define("_links","Links");
define("_links_href","links.php");
define("_lang","Malay");
define("_lang_href","clang.php");
define("_lang_info","Change language to");
?>
PHP Code:
//language.php
if ($HTTP_COOKIE_VARS) { while (list($var_name$var_value) = each($HTTP_COOKIE_VARS)) { $$var_name $var_value;  } }

if (empty(
$language)) {
   
setcookie("language","English");
   
$language "English";
}
include_once(
$language ".php"); 

PHP Code:
//clang.php
if ($HTTP_COOKIE_VARS) { while (list($var_name$var_value) = each($HTTP_COOKIE_VARS)) { $$var_name $var_value; } }
if (
$HTTP_GET_VARS) { while (list($var_name$var_value) = each($HTTP_GET_VARS)) { $$var_name $var_value; } }

$site $HTTP_REFFER;
if (empty(
$language)) setcookie("language","English");
header(Location$site); 

PHP Code:
//main.php
<?php
include "language.php"
?>

Please click our link below...<br/>
<a href="<?php echo _index_href;?>"><?php echo _index;?></a><br/>
<a href="<?php echo _link_href;?>"><?php echo _links;?></a><br/><br/>

<?php echo _lang_info ?><a href="<?php echo _lang_href?>"><?php echo _lang?></a>
yak yak!
__________________
I hate when:

vBulletin Message:
Sorry! The administrator has specified that users can only post one message every 60 seconds

Last edited by hymns; 04-12-2003 at 07:34 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11 (permalink)  
Old 14-12-2003, 09:49 AM
Novice Webmaster
 
Join Date: Nov 2003
Location: PJ
Posts: 45
Rep Power: 0
jikey is on a distinguished road
ok bia aku cuba dulu
__________________
Online Custume Jewelry Store
www.myasper.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 16-12-2003, 08:41 AM
white_neck's Avatar
Senior Webmaster
 
Join Date: Jan 2003
Location: dreamland
Posts: 240
Rep Power: 76
white_neck is on a distinguished road
Send a message via Yahoo to white_neck
erm.....
__________________
^_^ <== stay happy
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 18-12-2003, 12:46 AM
hymns's Avatar
Senior Webmaster
 
Join Date: Nov 2001
Location: Johor
Posts: 769
Rep Power: 101
hymns is on a distinguished road
Send a message via ICQ to hymns Send a message via Yahoo to hymns
__________________
I hate when:

vBulletin Message:
Sorry! The administrator has specified that users can only post one message every 60 seconds
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 25-12-2003, 01:57 AM
Novice Webmaster
 
Join Date: Nov 2003
Location: PJ
Posts: 45
Rep Power: 0
jikey is on a distinguished road
i belum test lagi ~
takda masa nak test
sekarang testing streaming server
__________________
Online Custume Jewelry Store
www.myasper.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 08-01-2004, 08:15 PM
hymns's Avatar
Senior Webmaster
 
Join Date: Nov 2001
Location: Johor
Posts: 769
Rep Power: 101
hymns is on a distinguished road
Send a message via ICQ to hymns Send a message via Yahoo to hymns
dah januari pon...
__________________
I hate when:

vBulletin Message:
Sorry! The administrator has specified that users can only post one message every 60 seconds
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads