Recent content by oceanwap

  1. oceanwap

    Account Suspension

    They will tell the status here or not or I need to setup deadline of my own.
  2. oceanwap

    Account Suspension

    Hi, My account is suspended on 13.06.2010. Reason is Copyright infringment.Please tell me what Copyright infringment I did.So I can correct that mistake.My site is under development.If you will look through the files on my account you will find zend framework project's file.Using which I will...
  3. oceanwap

    How to handle dynamic input fields in post method using Php

    I have created a script to allow user to input text inside a form using post method having user defined no of fields. Here is the code:- if(isset($_get['url_no'])) { <form name="myform" action="'.$_SERVER['PHP_SELF'].'" method="post"> $counter = 1; $url_no = 1; while ($url_no <=...
  4. oceanwap

    How to sort alternative keys and values from an associative array in PHP

    I have an array in which I stores key and values using post method, so let's assume it looks like this $links = array("PHP" => "http://", "Zend" => "http://zend.com","Mysql" => "http://mysql.com", "Ubuntu" => "http://ubuntu.com"); Now for fetching values I can do this foreach($links...
  5. oceanwap

    Redirect mobiles to mobile page?

    http://mobiforge.com/developing/story/introduction-wurfl Articles like these can be helpful.It takes time to understanding how to use wurfl, due to lack of experience in php. especially if you are not familier with classes(OOP) in php and databases(DBMS). if you encounter any errors then...
  6. oceanwap

    Redirect mobiles to mobile page?

    @aliasneo.Your project is so simple and you don't need this. :-) I have written this for others who will browse this thread. You can Download tera wurfl from http://www.tera-wurfl.com This is database driven api of wurfl faster than php api. And run this script <?php...
  7. oceanwap

    Redirect mobiles to mobile page?

    Just detect the mobile browsers using that function and redirect them. And do this on top of the home page(most probably index.php in document root). So you can redirect the mobile user using header. if(it is mobile device) { header ("Location: http://www../mobile"); exit; }
  8. oceanwap

    Redirect mobiles to mobile page?

    Since you don't have any idea about Php programming you can't use wurfl. Which is best for creating a mobile site. It is not a best approach to create two sites for two different browsers.A common business logic and different presentations or designs for different mobiles and web browsers are...
  9. oceanwap

    Please help to access my mail.

    DNS problem resolved now there is one more problem, the mail I am sending from php mail() function is being reported as the spam, on yahoomail and rediffmail Here is the php code to send mail <?php $to = "example@yahoo.co.in"; $subject = "Test mail"; $message = "Hello! This is a simple email...
  10. oceanwap

    Please help to access my mail.

    This worked for me perfectly.Google retrieved required mx and cname records.The only thing, I am concerned about DNS.Because opening www.oceanwap.co.cc works whereas oceanwap.co.cc points to co.cc.I set up A record in co.cc to the shared ip of x10hosting.com which is located in Advanced DNS zone...
  11. oceanwap

    Please help to access my mail.

    Hi, I think this will work for you, If you have co.cc domain or any domain name that point to x10hosting.com. You should login on the site of domain name provider and add mx records and CNAME record for veification. Then login to google apps and tell it to update status of mx entries. For more...
  12. oceanwap

    Can I get more subdomains?

    With a littile investment you can get best offers from x10hosting,
  13. oceanwap

    Please help to access my mail.

    Hi I have similar problem, I didn't used the webmail of x10hosting, but I tried to set up google apps from cpanel.I go to 'mx entry' section and entered MX record ASPMX.L.GOOGLE.COM for priority 0 But this is not working for me.And now there are options to select 1)Automatically detect...
  14. oceanwap

    How to Auto select User's country in registration form's select menu using PHP

    Thanks I learnt what you wrote, I searched web using google beore asking this question.Web results confused me, I read the concept of dynamic variables. example:- <?php $test = "success"; $primary = "test"; $ID = ${$primary}; echo $ID; ?> So that outputs success I thought that if I can...
Top