hi, i am lately working on drupal CMS, I am not able to find any good ebook or online tutorial, if u have any ebook or know any online tutorial, which you...
346
hari
harirajamoni
Feb 12, 2007 5:42 am
Dear all, I am doing only job portal for one concern once the jobseekers got registered they must be intimated through sms to their mobile. Can anyone please...
347
arun yakkundi
arunvyakkundi
Feb 13, 2007 5:32 am
Hi, Dear Hari,for yor application I think you can use SMS service provided by mobile services providers directely,or there are some vendors who proveds SMS...
348
CS Shyam Sundar
ssundar85
Feb 13, 2007 5:32 am
hey google for "Indian SMS gateways" see: http://www.smsjunction.com/ http://www.znisms.com/ if you want international coverage: clickatell will be a nice...
349
siraj_786_khan
Feb 13, 2007 5:44 am
I use CURL Function for importing the contact address but after executing my file it gives following error. Warning: curl_setopt() [function.curl-setopt]:...
350
raji skariah
raji_ska
Feb 13, 2007 3:43 pm
hi all.. thanks to everybody who helped me to get out of the extraction data problem With Love & Prayers, Raji Pramod ... No need to miss a message. Get email...
351
pritesh loke
priteshloke
Feb 14, 2007 3:08 am
Hello To All I create one one dynamic html template which i have to mail using php.Page conataints my website logo and some html designed but when i used mail...
352
pritesh loke
priteshloke
Feb 14, 2007 10:08 am
Hello To All I create one simplet webste in smarty.When in local server i call smarty class i will used require("libs/smarty.class.php"); but when i upload on...
353
ansar ansar
ansarahmed_8
Feb 15, 2007 11:33 am
Hi, In php manual there is an example which explains how to send the html email. You need to set the header to html. I have pasted the function from manual...
354
Ved Prakash
ved74
Feb 15, 2007 11:34 am
have you checked the permissions in those folders? ... [Non-text portions of this message have been removed]...
355
pritesh loke
priteshloke
Feb 25, 2007 7:21 am
Hello To All, I am creating one smoll cms.Not really big cms smoll one.In that conatins one form which gives input like Title and Content. Like blogger do.What...
356
jatinder kaur
jatinder_php
Feb 25, 2007 7:22 am
hi anees, u can check if ( !isset ($_SESSION) ) ) { enter to db } ... [Non-text portions of this message have been removed]...
357
CS Shyam Sundar
ssundar85
Feb 25, 2007 12:19 pm
Hi Pritesh., Its very Simple. I understand that you don't want to use a database., instead use flat files for storing contents. Use FCKEditor or TinyMCE to...
358
Murugesan Periasamy
murugesanme
Feb 27, 2007 8:18 am
Hai all, I am working on Joomla Opensouce. I want to install Calendar , Events, Shopping cart and Photo Gallery. Can anyone help me how to download all those...
359
bhavna_coolinus
Feb 28, 2007 10:45 am
Hey its just path problem no need to worry just check the permission to the perticuler smarty folder. it will work after that ... local server i call smarty...
360
ansar ansar
ansarahmed_8
Feb 28, 2007 12:56 pm
Hi Mugesh, You can download all the require module or component from http://www.joomlaresource.com/ I have used joomla and developed lots of portal from it. We...
361
Murugesan Periasamy
murugesanme
Mar 1, 2007 4:17 pm
ok. thanks. i have installed the virturmart module and published that and added products. But that shop is not displaying in the home page. do u know why? ......
362
jatinder kaur
jatinder_php
Mar 5, 2007 3:02 am
best way keeping the data of countries and cities in database tab ... [Non-text portions of this message have been removed]...
363
shridharshenoy2000
shridharshen...
Mar 5, 2007 7:26 am
Hi its always better to have the database for countries and cities database tab. It gives you the benifit of manipulation in database where in you have...
364
Anil Konsal
anil_konsal
Mar 5, 2007 7:30 am
Thanks Jatinder, for ur kind effort to help me in the matter. ____________________________________________________________________________________ Never miss...
365
KARTHIKEYAN RANGASWAMY
karthikranga83
Mar 5, 2007 9:55 am
Hai, U can use Database for cities and country filling but in that case u will get page refresh if you are not using AJAX.Use database for storing cities and...
366
thisistrinath
Mar 6, 2007 2:37 am
Hello everyone, I live in New York and wish to come to Bangalore this year in Summer to spend some time there. In the process I also want to make some good use...
367
pritesh loke
priteshloke
Mar 9, 2007 1:38 pm
Hello To all I have one smoll but big problem.I created one form which is my registration. see this code <form method=post> <input type=text name=fname /> ...
368
CS Shyam Sundar
ssundar85
Mar 9, 2007 2:14 pm
Dude., This is damn simple., Before entering details to DB check if an entry already exists in the database. If it exists dont enter the details., !!! ... -- ...
369
pritesh loke
priteshloke
Mar 10, 2007 7:28 am
Hello my problem is how i clear post data at refresh time not db problems pls give me any idea if you know. Thank you CS Shyam Sundar <csshyamsundar@...>...
370
thisistrinath
Mar 10, 2007 7:28 am
Hi everyone, I want to know that how can I obtain HTML source code of a web page with the use of a built-in PHP function(s). It should work like if I provide...
371
Vishwanath B
vishwanath_cse
Mar 10, 2007 7:36 am
hi... i think this may help you....while inserting into database u can check the condition whether the value is in database or not.if not then only insert into...
372
CS Shyam Sundar
ssundar85
Mar 10, 2007 12:31 pm
Hmmmm., The way to do it according to the HTTP spec (RFC 2187<http://www.faqs.org/rfcs/rfc2187.html>) is to generate raw HTTP headers. In PHP: ...
373
Ankur Dave
dave.ankur
Mar 10, 2007 12:31 pm
The easiest one is .. http://in2.php.net/manual/en/function.file-get-contents.php <?
$content=file_get_contents("http://www.google.com");
echo $content;
?>
so...
374
thisistrinath
Mar 11, 2007 5:19 am
Ok I understand that $content is now a string containing HTML code of the given URL. But now when I did the following, it displays nothing. <? ...