Jump to content

anand.arjunan

Members
  • Posts

    45
  • Joined

  • Last visited

anand.arjunan's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. anand.arjunan

    cake php

    Hi all any idea about cake php any sample code available Please inform me thanks and regards
  2. Hi all The php out put file i want generate the excel format please tell me any idea
  3. $to.= $arg['email']. ","; // note the comma//$to .= "kelly@example.com";/* subject */$subject = "Registration Complete Thankyou";/* message */$message = '<html><head><title>Registration</title></head><body><table width="84%" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td width="300" height="172"><img src="images/logo.jpg" alt="lunchwanted.com" width="303" height="172" /></td> <td width="418" height="172"><img src="images/logo-1.jpg" width="330" height="172" /></td> </tr> </table><table width="84%" height="150" border="0" cellpadding="0" cellspacing="0" align="center"> <tr><td height="15">Registration Complete- Thank you Mail</td></tr> <tr><td valign="top">______________________________</td></tr> <tr><td>Dear Mr.'.$arg['fname'].'</td></tr><tr><td>Thank you for Registering at www.yourdomain.com</td></tr><tr><td>Your login details are given below.</td></tr><tr><td>Email Address : '.$arg['email'].'</td></tr><tr><td>Password : '.$arg['pass'].'</td></tr><tr><td>Please Click the following link to complete your registration process</td></tr><tr><td><a href="http://yourdomain.com/confirm.php?email='.$arg['email'].'">Activate your account</a></td></tr><tr><td>This is an automated email, so please do not reply to this.</td></tr><tr><td>Thank you.</td></tr><tr><td>Regards.</td></tr><tr><td></td></tr></table></body></html>';/* To send HTML mail, you can set the Content-type header. */$headers = "MIME-Version: 1.0\r\n";$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";/* additional headers */$headers .= "To:".$arg['email']."\r\n";$headers .= "From: $mailvariable\r\n";/* and now mail it */mail($to, $subject, $message, $headers);Please try this above coding we are doing like that it will working properly
  4. Hi all i need a form validation using ajax.In this form the user email is available or not this validation is using ajax please give me a sample coding it is urgent i am new to using ajax .Thanks
  5. <?php/* recipients */$to = "mary@example.com" . ", " ; // note the comma$to .= "kelly@example.com";/* subject */$subject = "Birthday Reminders for August";/* message */$message = '<html><head><title>Birthday Reminders for August</title></head><body><p>Here are the birthdays upcoming in August!</p><table><tr> <th>Person</th><th>Day</th><th>Month</th><th>Year</th></tr><tr> <td>Joe</td><td>3rd</td><td>August</td><td>1970</td></tr><tr> <td>Sally</td><td>17th</td><td>August</td><td>1973</td></tr></table></body></html>';/* To send HTML mail, you can set the Content-type header. */$headers = "MIME-Version: 1.0\r\n";$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";/* additional headers */$headers .= "To: Mary <mary@example.com>, Kelly <kelly@example.com>\r\n";$headers .= "From: Birthday Reminder <birthday@example.com>\r\n";$headers .= "Cc: birthdayarchive@example.com\r\n";$headers .= "Bcc: birthdaycheck@example.com\r\n";/* and now mail it */mail($to, $subject, $message, $headers);?> this is the example mail coding check this it is working properly.and go to this url there down load the manualhttp://in2.php.net/get/php_manual_en.chm/from/a/mirrorit is very help ful.
  6. Hi all Please tell me what are the library files in php and default dll files in php
  7. anand.arjunan

    CMS Problem

    Hi all in my project i need CMS in MAMBO.i install it but that is like a one full site.i am already developed my site but the client is CMS is use MAMBO.What to do Please help me.
  8. Please check this upload file coding here no need file exist here save the file temp name$path=$_SERVER['DOCUMENT_ROOT']; $pro='/upload/';//your folder comes here $uploadDir = $path.$pro;if($_POST){$title = $_REQUEST['title'];$fileName = $_FILES['file']['name'];$tmpName = $_FILES['file']['tmp_name'];$fileSize = $_FILES['file']['size'];$fileType = $_FILES['file']['type'];$filePath = $uploadDir . $fileName;// get the file extension first$ext = substr(strrchr($fileName, "."), 1); // make the random file name $randName = md5(rand() * time()); $imag=$randName.'.' . $ext;// and now we have the unique file name for the upload file$filePath = $uploadDir . $randName . '.' . $ext;$result = move_uploaded_file($tmpName, $filePath);chmod($filePath,0777);}
  9. I have integrate phpbb2 forum if i am log in to my project the forum also auto log in.if the guest user view the forum only . any idea what is the variable to pass in project login page to phpbb2/login.php page please anybody help me.
  10. Your upload file stored in temp name under "//www.cachegroups.com/tp/ " this folder or the same file name what you are upload the same file name is stored in this particular folder.you can give the full path to chmodchmod("your full path with the file name",0755)and see the examples of below linkhttp://in.php.net/manual/en/function.chmod.php
  11. Hi all in my project i am integrating phpbb2 forum,b2evalution,and mambo cms if i am a guest user means every where it will be shown guest user once i am log in my site after i am click the any link that time there also i have no need log in because i am login my site.how it is possible please help me the above three tools also i am first time using so any one please help me it is urgent.
  12. anand.arjunan

    URL masking

    Hi,Can any one help me. i did the webapplicationm project.After complete the project the client asking me to change the url or hide the url" URLs – Why are most of the links in a “register” folder? For instance when Im logged into an account the link for the Top Gaming Guilds is http://sitename.com/register/topGuildSrch.php " -- This what the client send to me .Now i need to do like this http://sitename.com/topGuildSrch.php ... like this for ebery page
  13. Hi friends,In my project i have integrate phpbb2 forum when i am after log in the phpbb2 forum also want to log in
  14. ya it will open new window but the parent window also reloaded is must because all the fields are updated and there echo the updated successfully message also display.how it is possible
  15. anand.arjunan

    mambo doubt

    Hi all any body know the mambo .how to change the user template and control the login and all.Please explain me
×
×
  • Create New...