Friday, November 27, 2009

[PHP_MySQL] creating a function to handle post data

 

It will be better if you go through the array for all the required variable
then call them through the object from parent class...

this will be less code more output...

--

Regards,
Yogendra Ghorecha
----------------------------
Website : www.yogighorecha.com
Email : yogi.ghorecha@gmail.com
Cell : 999 8292 661

Address : B/604 Royal Chinmay Tower,
Beside Platinum Plaza,
Judges Bungalow, Bodakdev,
Ahmedabad - 380054

[Non-text portions of this message have been removed]

__._,_.___
------------------------------------------

Come to the monthly meetings at UTD in Richardson, TX.
Second Tuesday of every month.
.

__,_._,___

[computer-jobs] Search4JobLeads.com: Jobs Throughout The World

 

Search4JobLeads.com <http://search4jobleads.com/>

Jobs Throughout The World

Search4JobLeads.com <http://search4jobleads.com/> is an easy to use site
that brings thousands of other sites together in one place so that you don't
have to go from one to another to another looking for job leads.

We provide you with job leads for any type of work anywhere in the world.
Full time. Part time. Consulting. Internships. Any size and shape of job!

So go to Search4JobLeads.com <http://search4jobleads.com/> and find leads
easily!

*And remember to bookmark the site so you can return often!** *

*
*

*Search4JobLeads.com <http://www.search4jobleads.com/>*

[Non-text portions of this message have been removed]

__._,_.___
To unsubscribe from this group, send a blank e-mail message to:
computer-jobs-unsubscribe@yahoogroups.com
.

__,_._,___

Thursday, November 26, 2009

[computer-jobs] For-Pune Test Engineer (2-3 yrs.) with our client - US based Software Product Company.

 

Do not hit reply button, reply to: terrafirmajobs@yahoo.com
______________________________________________________

We need Test Engineers (2-3 yrs.) with our client - US based Software Product Company.

We need candidates from Pune as position is for junior testers. We would not be able to consider candidates from other city for any reason.

About Company: The company has their Pune based development centre, with a team of 20 developers. It is a product development company with big clients using their products, so they do not need developers in numbers as common services company needs to get revenue. The company earns revenue on license and IP rights.

The company is offering enriched learning environment, wide range of professional development tools, cutting edge technology with which would definitely help you to grow in your career. Salary is not a constraint for a potential candidate.

Qualification: Engineering Graduate /MCAs only

Job location: Kothrud, Pune

Designation: Test Engineer

Experience: 2-3 years of Testing experience

Skill sets:
• Test Planning,
• Test Case Writing,
• Test Execution,
• Product Quality
• Ownership on Enterprise Grade J2EE project.
• Test Automation and/or
• Programming Experience (in Java/C++/Perl) will be an added advantage.

Please refer your friends with the names and contact nos. or apply if you are interested in the above mentioned opening.

Contact details:
Manisha Fuge,
Terra Firma,Pune
http://talentbricks.ning.com
Emailmeat: manisha.fuge@talentbricks.com
Work: 91-020-65004355
IM:Yahoo:manisha_terrafirma
_____________________________________________
Job posted by: Talent Bricks

__._,_.___
To unsubscribe from this group, send a blank e-mail message to:
computer-jobs-unsubscribe@yahoogroups.com
.

__,_._,___

[computer-jobs] For-Pune Test Engineer (2-3 yrs.) with our client - US based Software Product Company.

 

Do not hit reply button, reply to: terrafirmajobs@yahoo.com
______________________________________________________

We need Test Engineers (2-3 yrs.) with our client - US based Software Product Company.

We need candidates from Pune as position is for junior testers. We would not be able to consider candidates from other city for any reason.

About Company: The company has their Pune based development centre, with a team of 20 developers. It is a product development company with big clients using their products, so they do not need developers in numbers as common services company needs to get revenue. The company earns revenue on license and IP rights.

The company is offering enriched learning environment, wide range of professional development tools, cutting edge technology with which would definitely help you to grow in your career. Salary is not a constraint for a potential candidate.

Qualification: Engineering Graduate /MCAs only

Job location: Kothrud, Pune

Designation: Test Engineer

Experience: 2-3 years of Testing experience

Skill sets:
• Test Planning,
• Test Case Writing,
• Test Execution,
• Product Quality
• Ownership on Enterprise Grade J2EE project.
• Test Automation and/or
• Programming Experience (in Java/C++/Perl) will be an added advantage.

Please refer your friends with the names and contact nos. or apply if you are interested in the above mentioned opening.

Contact details:
Manisha Fuge,
Terra Firma,Pune
http://talentbricks.ning.com
Emailmeat: manisha.fuge@talentbricks.com
Work: 91-020-65004355
IM:Yahoo:manisha_terrafirma
_____________________________________________
Job posted by: Talent Bricks

__._,_.___
To unsubscribe from this group, send a blank e-mail message to:
computer-jobs-unsubscribe@yahoogroups.com
.

__,_._,___

Re: [PHP_MySQL] Multiple transactions in mysql

 

Hi,

maybe you can code this trick:

--- begin code here -----
// you always can choose to use BEGIN or START TRANSACTION
mysql_query("START TRANSACTION");

$runSent = mysql_query($qrysent);
$runDel = mysql_query($qrydel);
$runDelUser = mysql_query($DelUsrQry);

if ($runSent && $runDel && $runDelUser)
{
mysql_query("COMMIT");
}
else
{
mysql_query("ROLLBACK");
}
---- end code here ----

Hope it helps ;)

Kristiono Setyadi
Web and .NET Programmer
http://kristiono-setyadi.net/

________________________________
From: Shajan Joseph <shajan4@yahoo.com>
To: PHP_MySQL_usergroup@yahoogroups.com
Sent: Thu, November 19, 2009 1:14:43 PM
Subject: [PHP_MySQL] Multiple transactions in mysql

Dear all

I'm using some multiple transactions to complete a task. My coding is given below:

mysql_query( "BEGIN");
mysql_query( $qrysent) or die('Could not delete. Try after some time.');
mysql_query( $qrydel) or mysql_query( "ROLLBACK" );
mysql_query( $DelUsrQry) or mysql_query( "ROLLBACK" ) ;
mysql_query( "COMMIT") ;

It is working fine. But I have to check whether it is committed or not. Accordingly I have to proceed the coding.

Pls help me how me how to do it?

Thanks,
Shajan Joseph

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]

__._,_.___
------------------------------------------

Come to the monthly meetings at UTD in Richardson, TX.
Second Tuesday of every month.
.

__,_._,___

[PHP_MySQL] grabbing using xpath problem

 



Hello friends,

I want to grab an href attribute of first anchor tag from this link http://www.sidereel.com/Heroes/_season/4/_episode/11/_search/_links


I am using the code

$fromurl='http://www.sidereel.com/Heroes/_season/4/_episode/11/_search/_links';
$html = getDocument($fromurl);
$dom = new DOMDocument();
@$dom->loadHtml($html);

$xpath = new DOMXPath($dom);

$content = $xpath->query('//a[@class="wl"]');

echo $content->length;

echo 'Title: ' . $content->item(0)->childNodes->item(0)->nodeValue . '<br />';
echo $content->getAttribute('href');

It was working previously but now href attribute value is not appearing. It only shows "Thanksgiving".
I want to grab this value "/Heroes/_watchlinkviewer/37244"


Can you please help me.

Regards
Gotu



Windows 7: Find the right PC for you. Learn more.

__________________________________________________________
Windows 7: Find the right PC for you. Learn more.
http://windows.microsoft.com/shop

[Non-text portions of this message have been removed]

__._,_.___
------------------------------------------

Come to the monthly meetings at UTD in Richardson, TX.
Second Tuesday of every month.
.

__,_._,___

[computer-jobs] For- Pune Embedded Test Lead (6-7 yrs.)- Fortune 500 manufacturing and technology company

 

Do not hit reply button, reply to: terrafirmajobs@yahoo.com
___________________________________________________

We have positions Embedded Test Lead (6-7 yrs.) for Fortune 500 global manufacturing and technology company.

The details are as mentioned below:

About Company: Client is a diversified global manufacturing and technology company. The company offers a wide range of products and services in the areas of process management, climate technologies, network power, storage solutions, professional tools, appliance solutions, motor technologies, and industrial automation. It is recognized widely for engineering capabilities and management excellence. The company has more than 140,000 employees and approximately 255 manufacturing locations worldwide.

Designation: Embedded Test Lead

Qualification:
- Degree in Computer Science (BE, MCS)
- Degree in Electronics (BE, MSC)

Location: Pune (Hinjewadi)

Experience: 6-7 Yrs.

Technical Skills:
• Knowledge in C and / or C++ is a must.
• Embedded domain knowledge (microprocessors, peripherals)
• Expertise in different testing techniques
• Experience in developing Test Cases and preparing Test Plans, Schedule
• Knowledge in Communication protocols and RTOS
• Knowledge of process control and instrumentation systems is desired
• Familiar using version control and defect tracking tools

Leadership Skills:
• Ability to lead team of 3-4 test engineers
• Experienced in communicating with customers
• Good oral and written communication

Please refer your friends or apply if you are interested in the job and company.

Cordially,
Priya Admane,
Sr. Executive- Client Relations,
Talent Bricks HR Services Pvt. Ltd.
(Formerly known as ' Terra Firma')
Work: 91-020- 65004353
Email: priya.admane@talentbricks.com
Let's connect@ Linkedin or Ning or yahoo group or google group
Online IM: Yahoo: priyaadmane Google: priya.admane
___________________________________________________
Job posted by: Talent Bricks

__._,_.___
To unsubscribe from this group, send a blank e-mail message to:
computer-jobs-unsubscribe@yahoogroups.com
.

__,_._,___