Jump to content

searchacar

Members
  • Posts

    11
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://www.searchacar.co.uk

Profile Information

  • Gender
    Male

searchacar's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. that's good one. i have saved that in my favourites for future reference.
  2. thanks both of you guys. Psycho made it very clear to me. Fastsol effort is much appreciated especially example he posted i have looked again and it is getting more clear. I was trying to learn some technology for this like jquery, and functions like render in php. But this made me very clear that i still can do with my old php coding. thanks guys. your response is much appreciated.
  3. Thanks for the reply fastsol. but can we technically save files in .php e.g index.php etc? I have installed one template here http://mobile.caarz.co.uk/ is this ok. this is using .html not .html5 but i need to pull data out from database using php. do i need to render them or will it work like normal php using echo method.
  4. Hi, I am bit confused as never done mobile website. I was thinking we have to use jquery to create a website into mobile. is it possible we can use only php/mysql and html? Is it mean that mobile website is smaller version or is it mean we have to use some certain technologies like jquery, html5. How google/other search engines will know this is mobile version and other is general website for computers. I was thinking differently but today i donwload free version of mobile website and in coding they only used html css? what about php can we use it too without jquery for database. sorry to ask realy basic question. I am trying to create a first mobile website. any advice / hints will be much appreciated.
  5. thanks, i will try to do this.
  6. Hello everyone, I am going to install phpmailer.php for sending emails. IS there someone guide me step by step. thanks. I want to do sending emails using my hosting company netfirms. Am i able to install it on thier server. which file needed to install in which directory and what are the configuration. please let me know any issue if someone have using it. thanks
  7. $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; It seems to me no reply from any senior members. If someone have knowledge of it can he/she explain this bit, i am realy stuck from few days. if i change charset in above line to utf-8 and then send email then it makes no changes and email shown always in strange characters like this "§Ù† كانت " whatever i change the charset on top two header line it makes no effect on emails. But why if i change charset in the browser then it makes changes in these characters. e.g if you change your encoding say to utf-8 from your browsers setting then probably you will notice these charcter will change into arabic words.
  8. can someone explain this bit, i think i am missing somthing here, " $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n"; " if i use charset=utf-8 on web page it shows arabic fine either i open web page in internet explores, or firfox etc but why not in emails when i put charset=utf-8 in above header and send email using same databases it shows the result in yahoo and outlook express as given below, " ان كانت الÙتاة التي معك اختك او زوجتك او اØ*د من اقاربك Ùلا تÙكر مرة اخرى ان تأتي بها الى هذا المكان ولا ÙÙŠ المطاعم الاخرى المنتشرة ÙÙŠ المنطقة الخضراء وما شاهدته هنا لا يساو٠" Is there something in browser over-riding. Or Is there I am missing any of field in header. What usually people use in header to support other languages. any suggestion, i am realy stuck. thanks
  9. CHARSET=latin1 set in databases. Also this works fine on the websites. all pages on website works ok, but problem is in sending email. Note: If i do query from database and echo the result on website page which shows ok but when submit this information in email then it shows characters as shown on top. However in outlook express it only works when we chages encoding. hope this will help to understand the issue.
  10. I dont know about servers, but it gets fine in hotmail. probably there character encoding automatically get set. However problem seen in yahoo, and outlook express. It shows the message as i have posted the result above. I dont know how it comes ok in hotmail. I also noticed that if i copy and paste the whole arabic words then it goes to yahoo fine. But getting error when i directly get result from datbases and then send in email.
  11. Hi, I been creating and sending emails from a ling time by the coding form given below, $to = $user_email; // subject $subject = 'helo'; // message $message = " <html> <head> <title> Account Activation Link</title> </head> <body> <table width='759'> <tr> <td>message here</td> </tr> </table> </body> </html> "; $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; .................................. .................................. The above method is fine for sending emails in html and in english. But if i use same code to generate arabic word it give some charcters like this, " ان كانت الÙتاة التي معك اختك او زوجتك او اØ*د من اقاربك Ùلا تÙكر مرة اخرى ان تأتي بها الى هذا المكان ولا ÙÙŠ المطاعم الاخرى المنتشرة ÙÙŠ المنطقة الخضراء وما شاهدته هنا لا يساو٠" I have changed charset many time to arabic but could not reslove the issue and still get the same result. Note: I first do query some result from database, get the result and then send it using the above email forms. thanks any advice will be great.
×
×
  • 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.