Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

phpexperts

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 15298 - 15327 of 15662   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Show Message Summaries Sort by Date ^  
#15298 From: "Prince" <prince37474@...>
Date: Tue Nov 1, 2011 11:02 pm
Subject: (Off topic) Urgent web designer needed (expert only)
prince37474
Send Email Send Email
 
I need a web designer for psd design & graphics design. if u are very
much creative & have a good portfolio then mail me, otherwise not pls.
i will continue with u for long term but it depends on ur quality of
design. i will pay on project basis now. payment can be cash or check.

contact: prince374@...

**no need to reply here in group.

#15299 From: "sari_2310" <sari_2310@...>
Date: Wed Nov 2, 2011 8:47 pm
Subject: Reg: OCR in PHP
sari_2310
Send Email Send Email
 
Hi,

I want to develop a site like whatthefont.com. Can anyone help me in find out
font matching script in PHP.

Thanks in Advance

#15300 From: Guru™ <nagendra802000@...>
Date: Fri Nov 11, 2011 5:43 am
Subject: Need help with updating existing mysql records with something else
nagendra802000
Send Email Send Email
 
Hi All,

I want to update an existing mysql record with another value after calculating it. Below is the code.

<?php
$connection = mysql_connect("localhost", "root", "") or die("Error connecting to database");
mysql_select_db("maha", $connection);
$result = mysql_query("SELECT * FROM tax", $connection) or die("error querying database");
$i = 0;
while($result_ar = mysql_fetch_assoc($result)){
?>
<tr <?php if($i%2 == 1){ echo "class='body2'"; }else{echo "class='body1'";}?>>
<td>
<?php
$res=$result_ar['mwool40_totqty']-10;
echo $res;
?></td>
</tr>
<?php
$i+=1;
}
?>
                     

I want to append the $mwool40_totqty value with the calculated one "$res". Let say initially the value of $mwool40_totqty is 50. and after calculation its value became 40, then the code should edit/alter/update the value in mysql table with integer 40. Please help me with this.


--
Best,
Guru™


#15301 From: Zakir Hossain <rajuru@...>
Date: Fri Nov 11, 2011 6:57 am
Subject: Re: [phpXperts] Need help with updating existing mysql records with something else
thehungrycoder
Send Email Send Email
 
hi
i think you can do it in a single query if the calculation is straight forward as you shown (subtracting 10 from original value)

UPDATE `tax` SET `mwool40_totqty` = `mwool40_totqty` - 10


so you code will be:

$connection = mysql_connect("localhost", "root", "") or die("Error connecting to database");
mysql_select_db("maha", $connection);
$result = mysql_query("UPDATE `tax` SET `mwool40_totqty` = `mwool40_totqty` - 10", $connection) or die("error querying database");
..........
..........
..........




Best Regard,
Raju
------------------------
http://hungrycoder.xenexbd.com - For novice.



2011/11/11 Guruâ„¢ <nagendra802000@...>
 

Hi All,

I want to update an existing mysql record with another value after calculating it. Below is the code.

<?php
$connection = mysql_connect("localhost", "root", "") or die("Error connecting to database");
mysql_select_db("maha", $connection);
$result = mysql_query("SELECT * FROM tax", $connection) or die("error querying database");
$i = 0;
while($result_ar = mysql_fetch_assoc($result)){
?>
<tr <?php if($i%2 == 1){ echo "class='body2'"; }else{echo "class='body1'";}?>>
<td>
<?php
$res=$result_ar['mwool40_totqty']-10;
echo $res;
?></td>
</tr>
<?php
$i+=1;
}
?>
                     

I want to append the $mwool40_totqty value with the calculated one "$res". Let say initially the value of $mwool40_totqty is 50. and after calculation its value became 40, then the code should edit/alter/update the value in mysql table with integer 40. Please help me with this.


--
Best,

Guruâ„¢



#15302 From: Guru™ <nagendra802000@...>
Date: Fri Nov 11, 2011 10:49 am
Subject: Re: [phpXperts] Need help with updating existing mysql records with something else
nagendra802000
Send Email Send Email
 
Hi Zakir,

The value 10 is just an example. Later it will be replaced with a variable which the user will have to enter.


On Fri, Nov 11, 2011 at 12:27 PM, Zakir Hossain <rajuru@...> wrote:
 

hi

i think you can do it in a single query if the calculation is straight forward as you shown (subtracting 10 from original value)

UPDATE `tax` SET `mwool40_totqty` = `mwool40_totqty` - 10


so you code will be:

$connection = mysql_connect("localhost", "root", "") or die("Error connecting to database");
mysql_select_db("maha", $connection);
$result = mysql_query("UPDATE `tax` SET `mwool40_totqty` = `mwool40_totqty` - 10", $connection) or die("error querying database");
..........
..........
..........




Best Regard,
Raju
------------------------
http://hungrycoder.xenexbd.com - For novice.




2011/11/11 Guru™ <nagendra802000@...>
 

Hi All,

I want to update an existing mysql record with another value after calculating it. Below is the code.

<?php
$connection = mysql_connect("localhost", "root", "") or die("Error connecting to database");
mysql_select_db("maha", $connection);
$result = mysql_query("SELECT * FROM tax", $connection) or die("error querying database");
$i = 0;
while($result_ar = mysql_fetch_assoc($result)){
?>
<tr <?php if($i%2 == 1){ echo "class='body2'"; }else{echo "class='body1'";}?>>
<td>
<?php
$res=$result_ar['mwool40_totqty']-10;
echo $res;
?></td>
</tr>
<?php
$i+=1;
}
?>
                     

I want to append the $mwool40_totqty value with the calculated one "$res". Let say initially the value of $mwool40_totqty is 50. and after calculation its value became 40, then the code should edit/alter/update the value in mysql table with integer 40. Please help me with this.


--
Best,

Guru™





--
Best,
Guru™


#15303 From: "Eather" <eather_ahmed@...>
Date: Fri Nov 11, 2011 12:33 pm
Subject: Re: Need help with updating existing mysql records with something else
eather_ahmed
Send Email Send Email
 
you can update by update query...
"update tbl_name set field_name = current_value where primary_field_name=value"

if you wanna update more than 1 value,
"update tbl_name set field_name = current_value, field_name = value, field_name
= value where primary_field_name=value"

hope this will help you
--- In phpexperts@yahoogroups.com, Guru™ <nagendra802000@...> wrote:
>
> Hi All,
>
> I want to update an existing mysql record with another value after
> calculating it. Below is the code.
>
> <?php
> $connection = mysql_connect("localhost", "root", "") or die("Error
> connecting to database");
> mysql_select_db("maha", $connection);
> $result = mysql_query("SELECT * FROM tax", $connection) or die("error
> querying database");
> $i = 0;
> while($result_ar = mysql_fetch_assoc($result)){
> ?>
> <tr <?php if($i%2 == 1){ echo "class='body2'"; }else{echo
> "class='body1'";}?>>
> <td>
> <?php
> $res=$result_ar['mwool40_totqty']-10;
> echo $res;
> ?></td>
> </tr>
> <?php
> $i+=1;
> }
> ?>
>
>
> I want to append the $mwool40_totqty value with the calculated one "$res".
> Let say initially the value of $mwool40_totqty is 50. and after calculation
> its value became 40, then the code should edit/alter/update the value in
> mysql table with integer 40. Please help me with this.
>
>
> --
> *Best,
> *
> *Guru™*
>

#15304 From: Guru™ <nagendra802000@...>
Date: Fri Nov 11, 2011 12:42 pm
Subject: Re: [phpXperts] Re: Need help with updating existing mysql records with something else
nagendra802000
Send Email Send Email
 
Thanks guys the issue is solved.


On Fri, Nov 11, 2011 at 6:03 PM, Eather <eather_ahmed@...> wrote:
 


you can update by update query...
"update tbl_name set field_name = current_value where primary_field_name=value"

if you wanna update more than 1 value,
"update tbl_name set field_name = current_value, field_name = value, field_name = value where primary_field_name=value"

hope this will help you


--- In phpexperts@yahoogroups.com, Guru™ <nagendra802000@...> wrote:
>
> Hi All,
>
> I want to update an existing mysql record with another value after
> calculating it. Below is the code.
>
> <?php
> $connection = mysql_connect("localhost", "root", "") or die("Error
> connecting to database");
> mysql_select_db("maha", $connection);
> $result = mysql_query("SELECT * FROM tax", $connection) or die("error
> querying database");
> $i = 0;
> while($result_ar = mysql_fetch_assoc($result)){
> ?>
> <tr <?php if($i%2 == 1){ echo "class='body2'"; }else{echo
> "class='body1'";}?>>
> <td>
> <?php
> $res=$result_ar['mwool40_totqty']-10;
> echo $res;
> ?></td>
> </tr>
> <?php
> $i+=1;
> }
> ?>
>
>
> I want to append the $mwool40_totqty value with the calculated one "$res".
> Let say initially the value of $mwool40_totqty is 50. and after calculation
> its value became 40, then the code should edit/alter/update the value in
> mysql table with integer 40. Please help me with this.
>
>
> --
> *Best,
> *
> *Guru™*
>




--
Best,
Guru™


#15305 From: Guru™ <nagendra802000@...>
Date: Sat Nov 12, 2011 12:44 pm
Subject: Need help with a logic
nagendra802000
Send Email Send Email
 
Hi All,

I need some help with a logic. I have a form with a drop down menu and a quantity field as shown in the picture attached with this mail. What I want is to put a logic between goods and quantity fields. Let say goods name is "Glass wool" and quantity is some integer then in the database only the glass wool value should change not others. For example:

If(goods name = "Glass wool")

then

(gwool_totqty-gwool_qty)

else if(goods name = "INSULATION FIBRE WOOL")

then

(ifwool_totqty-ifwool_qty)
............
............
........... and so on.

I am unable to put a logic in it. I tried but ended with so many if and else conditions. Please help me with this.


--
Best,
Guru™


1 of 1 Photo(s)


#15306 From: "Russell" <russell_aub@...>
Date: Sat Nov 12, 2011 6:42 pm
Subject: Expert wordpress and joomla programmer needed
russell_aub
Send Email Send Email
 
Hello Guys,

Looking for some one Joomla and WordPress specializing in PHP and AJAX
Immediately.

You should be able to develop custom modules/plugins/components of these
frameworks as well.

Must be highly competent in AJAX. Experience in frameworks such as jQuery is
absolutely mandatory.

> Experience on Framework(CakePHP and Codeigniter) is PLUS
> Commitment and dedication for work is must
> Will able to work from HOME
> Minimum 2 Days per week need to come in working place

Monthly salary 20000 BDT

Please contact on the following
Send your CV in the email

email - shadown2burn@...

#15307 From: "bowlerbobuk" <bobsharp@...>
Date: Mon Nov 14, 2011 5:14 am
Subject: WAMP ... PHP mail from locahost
bowlerbobuk
Send Email Send Email
 
Hi

I am trying to work out how to edit the PHP.ini file so that I can send emails
from a webpage (Contact Form).


I have 2 domains on the same hosted space, so can provide a "send from" email
address.
However, the pages I am editing are for a local charity and not yet hosted.

My problem is that the email requires authentication.
Where do I add the UserName and Password in the PHP.ini file ?


cheers

     Bob Sharp

#15308 From: "bowlerbobuk" <bobsharp@...>
Date: Mon Nov 14, 2011 5:14 am
Subject: WAMP ... PHP mail from locahost
bowlerbobuk
Send Email Send Email
 
Hi

I am trying to work out how to edit the PHP.ini file so that I can send emails
from a webpage (Contact Form).


I have 2 domains on the same hosted space, so can provide a "send from" email
address.
However, the pages I am editing are for a local charity and not yet hosted.

My problem is that the email requires authentication.
Where do I add the UserName and Password in the PHP.ini file ?


cheers

     Bob Sharp

#15309 From: Anjan Bhowmik <anjan011@...>
Date: Mon Nov 14, 2011 6:29 am
Subject: Re: [phpXperts] WAMP ... PHP mail from locahost
anjan011
Send Email Send Email
 
U seem to be using SMTP.

I would suggest u use the PHPMailer class to send emails. It can send mail using both php mail() and smtp.

I wouldn't recommend editing php.ini to set the smtp info, as the hosting for those sites may not allow u editing the php.ini on their server.

So, phpmailer is lot safer and easier.

On Mon, Nov 14, 2011 at 11:14 AM, bowlerbobuk <bobsharp@...> wrote:
 

Hi

I am trying to work out how to edit the PHP.ini file so that I can send emails from a webpage (Contact Form).

I have 2 domains on the same hosted space, so can provide a "send from" email address.
However, the pages I am editing are for a local charity and not yet hosted.

My problem is that the email requires authentication.
Where do I add the UserName and Password in the PHP.ini file ?

cheers

Bob Sharp




--
Anjan Bhowmik
Freelance Software & Web Developer
M : +880 - 1670 - 556419
E : anjan011@...


#15310 From: Arif Mahmud Rana <rarifmahmudmr9@...>
Date: Mon Nov 14, 2011 7:10 am
Subject: Re: [phpXperts] WAMP ... PHP mail from locahost
rarifmahmudmr9
Send Email Send Email
 
I am assuming you are trying to send email from localhost for that you must have a mail server in your working pc. I use xampp's mercury to test mail in localhost.

Process to send mail from localhost for testing purpose.
  1. Start your mercury server through xampp control panel.
  2. add a user from mercury's  configuration, manage local user. Give a username, Personal name and a password.
  3. Now open outlook express.
  4. Now go tools, account settings than click new.
  5. than click next than check manually configure server settings than click next.
  6. than click next. give your name, email address. if you have a user in mercury mail server like rasha than you will give mail address rasha@localhost. Incoming and outgoing mail servers will be localhost. now at logon information you have to give mercury server username and password like if you have user like rasha and password 1234 than you have to input that.
  7. now all set test it by clicking on send/receive.
  8. now test it using php code,
    <?php
    // The message
    $message "Line 1\nLine 2\nLine 3";

    // In case any of our lines are larger than 70 characters, we should use wordwrap()
    $message wordwrap($message70);

    // Send
    mail('rasha@...''My Subject'$message);
    ?>


ARIF MAHMUD RANA

From: bowlerbobuk <bobsharp@...>
To: phpexperts@yahoogroups.com
Sent: Monday, November 14, 2011 11:14 AM
Subject: [phpXperts] WAMP ... PHP mail from locahost

 
Hi

I am trying to work out how to edit the PHP.ini file so that I can send emails from a webpage (Contact Form).

I have 2 domains on the same hosted space, so can provide a "send from" email address.
However, the pages I am editing are for a local charity and not yet hosted.

My problem is that the email requires authentication.
Where do I add the UserName and Password in the PHP.ini file ?

cheers

Bob Sharp




#15311 From: Arif Mahmud Rana <rarifmahmudmr9@...>
Date: Mon Nov 14, 2011 9:23 am
Subject: Re: [phpXperts] WAMP ... PHP mail from locahost
rarifmahmudmr9
Send Email Send Email
 
Sorry I forget, to check mail click send/receive again in outlook and you will see the mail.

ARIF MAHMUD RANA


From: Arif Mahmud Rana <rarifmahmudmr9@...>
To: "phpexperts@yahoogroups.com" <phpexperts@yahoogroups.com>
Sent: Monday, November 14, 2011 1:10 PM
Subject: Re: [phpXperts] WAMP ... PHP mail from locahost

 
I am assuming you are trying to send email from localhost for that you must have a mail server in your working pc. I use xampp's mercury to test mail in localhost.

Process to send mail from localhost for testing purpose.
  1. Start your mercury server through xampp control panel.
  2. add a user from mercury's  configuration, manage local user. Give a username, Personal name and a password.
  3. Now open outlook express.
  4. Now go tools, account settings than click new.
  5. than click next than check manually configure server settings than click next.
  6. than click next. give your name, email address. if you have a user in mercury mail server like rasha than you will give mail address rasha@localhost. Incoming and outgoing mail servers will be localhost. now at logon information you have to give mercury server username and password like if you have user like rasha and password 1234 than you have to input that.
  7. now all set test it by clicking on send/receive.
  8. now test it using php code,
    <?php
    // The message
    $message "Line 1\nLine 2\nLine 3";

    // In case any of our lines are larger than 70 characters, we should use wordwrap()
    $message wordwrap($message70);

    // Send
    mail('rasha@...''My Subject'$message);
    ?>


ARIF MAHMUD RANA

From: bowlerbobuk <bobsharp@...>
To: phpexperts@yahoogroups.com
Sent: Monday, November 14, 2011 11:14 AM
Subject: [phpXperts] WAMP ... PHP mail from locahost

 
Hi

I am trying to work out how to edit the PHP.ini file so that I can send emails from a webpage (Contact Form).

I have 2 domains on the same hosted space, so can provide a "send from" email address.
However, the pages I am editing are for a local charity and not yet hosted.

My problem is that the email requires authentication.
Where do I add the UserName and Password in the PHP.ini file ?

cheers

Bob Sharp






#15312 From: "mohin" <mohin_bn@...>
Date: Mon Nov 14, 2011 5:59 pm
Subject: I'm looking for Automatic Mobile Recharge System
mohin_bn
Send Email Send Email
 
Hello Freelancer/Expert
I'm looking for Automatic Mobile Recharge System.

This will be two part:

Desktop part:
1)  Automatic Mobile Recharge System will be in Desktop Computer. recharge sim
willbe connect withe Desktop via usb 3g/EDGE/GSM Modem or Mobile phone.
2) Application can be create 3-5 kind of user level. a) Admin b) wholesaler c)
Reseller d) Distributor e) client (note: all user can access in web platform)
3) system can able to show statistic by search/check
4) Software will be show real time position. (User on website/ Sending order/
etc)
5) Adding Mobile oparator and connect with modem/Mobile.

Website part;
1) Account creating ability by end user . Approval will be by Admin
2) recharge system database will connect with website (update whole system
real-time)
3) When each user login in website User can be see their controlpanal by
recharge system database.
4) user can change password and admin can all over.
5) User can see their Account balance
6) user just put Mobile number and amount and send
7) User can check their database ( date, Mobile number, amount)


Automatic Mobile Recharge System. deskto will connect in internet with USB modem
without static IP.

I need all source file for this project.

#15313 From: "bowlerbobuk" <bobsharp@...>
Date: Mon Nov 14, 2011 12:16 pm
Subject: Re: [phpXperts] WAMP ... PHP mail from locahost
bowlerbobuk
Send Email Send Email
 
Sorry

Using WAMP here,  not Xamp.

Don't have a mail server on board either (very primitive setup!)
Trying to use my domain host as the server.

Not sure how to add the authentication (UserName and password) to the PHP.ini
file.

cheers

     Bob



--- In phpexperts@yahoogroups.com, Arif Mahmud Rana <rarifmahmudmr9@...> wrote:
>
> Sorry I forget, to check mail click send/receive again in outlook and you will
see the mail.
>
> ARIF MAHMUD RANA
>
>
>
> ________________________________
> From: Arif Mahmud Rana <rarifmahmudmr9@...>
> To: "phpexperts@yahoogroups.com" <phpexperts@yahoogroups.com>
> Sent: Monday, November 14, 2011 1:10 PM
> Subject: Re: [phpXperts] WAMP  ... PHP  mail   from   locahost
>
>
>  
> I am assuming you are trying to send email from localhost for that you must
have a mail server in your working pc. I use xampp's mercury to test mail in
localhost.
>
> Process to send mail from localhost for testing purpose.
>
>  1. Start your mercury server through xampp control panel.
>  2. add a user from mercury's  configuration, manage local user. Give a
username, Personal name and a password.
>  3. Now open outlook express.
>  4. Now go tools, account settings than click new.
>  5. than click next than check manually configure server settings than click
next.
>  6. than click next. give your name, email address. if you have a user in
mercury mail server like rasha than you will give mail address rasha@localhost.
Incoming and outgoing mail servers will be localhost. now at logon information
you have to give mercury server username and password like if you have user like
rasha and password 1234 than you have to input that.
>  7. now all set test it by clicking on send/receive.
>  8. now test it using php code,
> <?php
> // The message
> $message = "Line 1\nLine 2\nLine 3";
>
>
// In case any of our lines are larger than 70 characters, we shoul\
d use wordwrap()
> $message = wordwrap($message, 70);
>
> // Send
> mail('rasha@...', 'My Subject', $message);
> ?>
>
>
> ARIF MAHMUD RANA
>
>
> ________________________________
> From: bowlerbobuk <bobsharp@...>
> To: phpexperts@yahoogroups.com
> Sent: Monday, November 14, 2011 11:14 AM
> Subject: [phpXperts] WAMP  ... PHP  mail   from   locahost
>
>
>  
> Hi
>
> I am trying to work out how to edit the PHP.ini file so that I can send emails
from a webpage (Contact Form).
>
> I have 2 domains on the same hosted space, so can provide a "send from" email
address.
> However, the pages I am editing are for a local charity and not yet hosted.
>
> My problem is that the email requires authentication.
> Where do I add the UserName and Password in the PHP.ini file ?
>
> cheers
>
> Bob Sharp
>

#15314 From: "Abdullah" <ab_duetcse@...>
Date: Tue Nov 15, 2011 6:58 am
Subject: (Off topic) Great oppurtunity for PHP developer (min 3 yrs exprience)
ab_duetcse
Send Email Send Email
 
Company/Organization:

nazdaqTechnologies Inc

No. of Vacancies:

3

Job Description / Responsibility

     Able to Analyze, design and develop software in Web based using: PHP5
     Extensive knowledge in CORE PHP5, Javascript & AJAX, CSS & MYSQL
     Experience with JavaScript library jQuery,Extjs
     Professional experience using Design Pattern
     Experience in developing web application
     Knowledge in Open source Tools
     PHP frameworks: Zend Framework, Kohana, CodeIgniter, CakePHP
     E-Commerce development with Magento, OSCommerce or other similar framework
     Practical knowledge in CMS (Joomla, Drupal, wordpress)


Educational Requirements

     BA/BS in Computer Science, Computer Engineering, Information Systems or
other related field



Experience Requirements

     At least 3 year(s)
     The applicants should have experience in the following area(s):
     Programmer/Software Engineer
     The applicants should have experience in the following business area(s):
     IT Enabled Service


Additional Job Requirements

     Good Communication Skills,
     Willingness to learn
     Team Working Ability
     Leadership Qualities
     Dedicated and Hard Working Common Sense & Self starter
     Good English writing and speaking skills
     Willingness to travel abroad

Salary Range

     Negotiable


Other Benefits

     Potential travel opportunity & challenging and stimulating career,
     Work with Fortune500 companies,
     Work and learn from highly experienced / world class international
developers,
     Fast-track management opportunities for the right candidates

Job Level :

     Mid, Top Level Job.


Job Location

Dhaka

Please send your latest resume to iffat.ara@...

#15315 From: Saleha Latif <salehalatif@...>
Date: Wed Nov 16, 2011 12:10 pm
Subject: WSDL issue
salehalatif
Send Email Send Email
 
Asalamoalikum & hello all,

I hope you all are in good health.

I have question about wsdl.
I have made wsdl file its gives me output on one server but on otherone returns:

Constructor error

HTTP Error: no data present after HTTP headers

Error

HTTP Error: no data present after HTTP headers

Do i need to Intall soap or something else or what.

appreciate your response.

Regards
Saleha


#15316 From: "Maaz" <friends_messages2003@...>
Date: Wed Nov 16, 2011 10:59 am
Subject: Need helping material for PHP Cetification 5.3
friends_mess...
Send Email Send Email
 
Hi All Friends,


I am going to appear n my PHP 5.3 certification exam in December. I need you
help Can any body provide me helping material tips or guidance. Al though i am
consulting guides and Php manual but still need help from you all.


Reagrds

#15317 From: "harun.niit" <harun.niit@...>
Date: Wed Nov 16, 2011 7:07 pm
Subject: Php Mail Function problem
harun.niit
Send Email Send Email
 
As-sala-mu-alaikum

I am using

@mail($email_to, $email_subject, $email_message, $headers);

this function for submitting form information in a mail account.
and it's working properly.

I set up mail forwarding service to a gmail account.

So that When a submit a form one mail automatically send to a gmail account. I
want my client access this gmail account.

My form data successfull to my domain email but don't forward to gmail.

After that I try differently ......
If i send email from another email account ( like rahim@...)it goes to
(myemail@...) aslo forwarding properly(myemail@...) properly.


If any one face this type problem ..... pls reply?

Any solution ?

Thanks waiting for reply ....

#15318 From: Saiful Islam <abssaiful@...>
Date: Thu Nov 17, 2011 4:05 am
Subject: Re: [phpXperts] Php Mail Function problem
siful_i
Send Email Send Email
 
Wassala,
Conform header:

as like

$headers  = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\n";
$headers .= "X-Priority: 3\n";
$headers .= "X-MSMail-Priority: Normal\n";
$headers .= "X-Mailer: php\n";
$headers .= "From:sample@...\n";
$headers .= "Cc: sample@..."."\n";

Hope it will works.


--
Saiful Islam
Gazipur, Bangladesh
http://saifulbd.com/



On Thu, Nov 17, 2011 at 1:07 AM, harun.niit <harun.niit@...> wrote:
 

As-sala-mu-alaikum

I am using

@mail($email_to, $email_subject, $email_message, $headers);

this function for submitting form information in a mail account.
and it's working properly.

I set up mail forwarding service to a gmail account.

So that When a submit a form one mail automatically send to a gmail account. I want my client access this gmail account.

My form data successfull to my domain email but don't forward to gmail.

After that I try differently ......
If i send email from another email account ( like rahim@...)it goes to (myemail@...) aslo forwarding properly(myemail@...) properly.

If any one face this type problem ..... pls reply?

Any solution ?

Thanks waiting for reply ....



#15319 From: Asif Ali M <itsme_me1@...>
Date: Thu Nov 17, 2011 10:32 am
Subject: Re: [phpXperts] Need helping material for PHP Cetification 5.3
itsme_me1
Send Email Send Email
 
Hi Maaz,

In my case I found its very simple to clear the certification. I purchased the voucher to in Oct 2010 but after purchasing i did not spare time to prepare and go for exam. Finally I thought to just attempt the exam instead of wasting the voucher to expire. I appeared for the exam just 3 days before expiry and luckily I got the message PASSED on screen.

When it comes to referring some books/presentations, I suggest you  go for some good php5.3 presentations on slideshare. Some of them are


I wish you All the Best for your exam.

 

From: Maaz <friends_messages2003@...>
To: phpexperts@yahoogroups.com
Sent: Wednesday, November 16, 2011 4:29 PM
Subject: [phpXperts] Need helping material for PHP Cetification 5.3

 
Hi All Friends,

I am going to appear n my PHP 5.3 certification exam in December. I need you help Can any body provide me helping material tips or guidance. Al though i am consulting guides and Php manual but still need help from you all.

Reagrds




#15320 From: Tani Cse <tanicse@...>
Date: Mon Nov 21, 2011 1:48 am
Subject: Need help for my project.
tanicse
Send Email Send Email
 
Assalamu Alaikum,

I am a university student and novice in PHP. I need an adviser/trainer for my final-year project. If anyone is interested, please let me know. I also need some advice from the experts in this group. Thank you in advance for your attention to this matter.

-Tani (CSE)

#15321 From: Arifur Rahman <arifur.aiub@...>
Date: Mon Nov 21, 2011 4:19 am
Subject: Re: [phpXperts] Need help for my project.
m_arifdu
Send Email Send Email
 
Wa alaikumus Salam

Please tell me what information or what kind of help you need. I can
suggest you and help you.


--
Muhammod Arifur Rahman
Senior Software Engineer
CEO,Smart Data Soft

#15322 From: "Md.Shoriful Islam Ronju" <smronju@...>
Date: Mon Nov 21, 2011 4:37 am
Subject: Re: [phpXperts] Need help for my project.
smronju
Send Email Send Email
 
Everyone is ready to help. So please mention what's your plan about the
project and where you need help?

Thanks

--
:: Md.Shoriful Islam Ronju ::
http://blog.smronju.com

#15323 From: Saiful Islam <abssaiful@...>
Date: Mon Nov 21, 2011 6:12 am
Subject: Re: [phpXperts] Need help for my project.
siful_i
Send Email Send Email
 
Of course, we are willing to help you.
I'll try to help you my best. You can share your ideas regarding your
project/thesis in this group.

--
Saiful Islam
http://saifulbd.com/

#15324 From: "ymnoor21" <ymnoor21@...>
Date: Mon Nov 21, 2011 7:05 pm
Subject: Re: Need help for my project.
ymnoor21
Send Email Send Email
 
Miss Tani,
Good to hear that you are thinking of doing something in PHP. However, why do
you think you need adviser / trainer? You are studying CSE, and I am assuming
you are going to submit a final project for completion of your thesis. So you
are suppose to get ideas from your supervisor and get approval of the project,
not to public groups. This is ethically wrong and even sharing it to public
could be considered as plagiarism. And Plagiarism is a serious offensive crime.
Most ppl aren't aware of it, or may be don't care. So my earnest request would
be "Please consider doing the project by your own and get ideas from your
teacher".

You can always ask programming related questions in this group and I'm sure
people here will be happy to help you. But do not share your academic project to
anyone other than your academia.

Thanks
Yamin


--- In phpexperts@yahoogroups.com, Tani Cse <tanicse@...> wrote:
>
> Assalamu Alaikum,
>
> I am a university student and novice in PHP. I need an adviser/trainer for my
final-year project. If anyone is interested, please let me know. I also need
some advice from the experts in this group. Thank you in advance for your
attention to this matter.
>
> -Tani (CSE)
>

#15325 From: Guru™ <nagendra802000@...>
Date: Tue Nov 22, 2011 8:59 am
Subject: Need Help with MYSQL Calculated data insert
nagendra802000
Send Email Send Email
 
Hi All,

I have few products, quantity and its unit price. Now I am able to insert the data into the database apart from the calculated one. For example:

$mwool40_qty = 2

$mwool40_utp  = 50

$mwool40_val = $mwool40_qty*$mwool40_utp ;

Now I can see the quantity and unit price in the database but I can't able to insert the value of $mwool40_val after the calculation. Although I can echo out and its showing the correct value. Please Help me with this.
--
Best,
Guru™


#15326 From: abdullah al jahid <abdullah.al.jahid@...>
Date: Tue Nov 22, 2011 9:15 am
Subject: Re: [phpXperts] Need Help with MYSQL Calculated data insert
abdullah_al_...
Send Email Send Email
 
Please write the query you are using.


2011/11/22 Guru™ <nagendra802000@...>
 

Hi All,

I have few products, quantity and its unit price. Now I am able to insert the data into the database apart from the calculated one. For example:

$mwool40_qty = 2

$mwool40_utp  = 50

$mwool40_val = $mwool40_qty*$mwool40_utp ;

Now I can see the quantity and unit price in the database but I can't able to insert the value of $mwool40_val after the calculation. Although I can echo out and its showing the correct value. Please Help me with this.
--
Best,

Guru™




--
Best Regards
Abdullah Al Jahid



#15327 From: Guru™ <nagendra802000@...>
Date: Tue Nov 22, 2011 11:57 am
Subject: Re: [phpXperts] Need Help with MYSQL Calculated data insert
nagendra802000
Send Email Send Email
 
I am using simple insert into database query.

$con = mysql_connect("localhost","root","");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("sale_vat", $con);

$sql="INSERT INTO vat(mwool40, mwool40_qty, mwool40_utp, mwool40_val)
VALUES
('$_POST[mwool40]',,'$_POST[mwool40_qty]', '$_POST[mwool40_utp]', '$_POST[mwool40_val]')";

mwool40, mwool40_qty & mwool40_utp is working fine but its unable to insert the calculated value of "mwool40_val" into the database. Please help me with it.



On Tue, Nov 22, 2011 at 2:45 PM, abdullah al jahid <abdullah.al.jahid@...> wrote:
 

Please write the query you are using.



2011/11/22 Guru™ <nagendra802000@...>
 

Hi All,

I have few products, quantity and its unit price. Now I am able to insert the data into the database apart from the calculated one. For example:

$mwool40_qty = 2

$mwool40_utp  = 50

$mwool40_val = $mwool40_qty*$mwool40_utp ;

Now I can see the quantity and unit price in the database but I can't able to insert the value of $mwool40_val after the calculation. Although I can echo out and its showing the correct value. Please Help me with this.
--
Best,

Guru™




--
Best Regards
Abdullah Al Jahid





--
Best,
Guru™


Messages 15298 - 15327 of 15662   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help