Jump to content

rabidityfactor

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

rabidityfactor's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Im an absolute newbie. Im trying to include google transliteration code(ajax i think) into statusnet - php application. how do i go about doing it? this is the google tranliteration code: http://code.google.com/apis/ajaxlanguage/documentation/#Transliteration i have also attachd the php file <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <script type="text/javascript" src="http://www.google.com/jsapi"> </script> <script type="text/javascript"> // Load the Google Transliteration API google.load("elements", "1", { packages: "transliteration" }); function onLoad() { var options = { sourceLanguage: google.elements.transliteration.LanguageCode.ENGLISH, destinationLanguage: [google.elements.transliteration.LanguageCode.HINDI], shortcutKey: 'ctrl+g', transliterationEnabled: false }; // Create an instance on TransliterationControl with the required // options. var control = new google.elements.transliteration.TransliterationControl(options); // Enable transliteration in the textbox with id // 'transliterateTextarea'. control.makeTransliteratable(['transliterateTextarea']); } google.setOnLoadCallback(onLoad); </script> </head> <body> Type in Hindi (Press Ctrl+g to toggle between English and Hindi)<br> <textarea id="transliterateTextarea" style="width:600px;height:200px"></textarea> </body> </html> [attachment deleted by admin]
  2. Thankyou all for the quick replies.
  3. Hi. Im very new to php. I'm trying to create a basic login/registration page. So I have a basic template (with headers and footers and stuff) - main.php. The contents are to be inside a table. The login/registration pages(login.php, register.php etc) do not have any hearders/footers, and I want them to be inserted inside the table in main.php. I tried doing it with the @include('register.php'), but then these pages have links inside them, which opens separately. How can I 'embed' the different pages in one single page - main.php?? I hope you understand my question. Thanks in advance.
×
×
  • 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.