php

how to take sqrt in sqlite

hi guys, This is the query of PHP using MySQL. can anyone please convert this query to sqlite query? Query: select SQRT(POW(latitude, 2) + POW(longitude, 2)) *110 as dist from route Best Regards, Thanks ...

How to output CCK Image in Views custom code

I have a view, which outputs all different types of nodes. One content type which I created is called "photo" and includes a CCK Image field. I want to customise the output, Im currently using views_customcode module to write PHP but I cant find the data to output the CCK image field? Ive also tried theming the view output, but, I want...

How do you properly set a blank variable as NULL

I am parsing an XML feed into a MYSQL table using simplexml_load_file(). Some of the variables are blank, I would like them to be actual NULL instead of NULL, or is there even a difference? $xml = simplexml_load_file('cb.xml') or die ('Bad XML File'); foreach($xml->item as $item) { $name = $item->name; //Tried if ($name == '') { ...

Assigning a dynamic path to file upload in php

hi, i have got a class which is used to upload a file checking its size etc, now i want that the path that i give to save the uploaded file should be dynamic like for example:if i am uploading some documents to leads in crm project than the path should be set in such a way that what ever i upload there should go to that leads folder.a...

saving and reading a xml file getting from the other url

Hello guys this is my code // build query string $searchUrl = "http://www.dezrez.com/DRApp/Search.ASP?WCI=Results&GType=" . $_POST["GType"] . "&EAID=" . $_POST["EAID"] . "&perpage=" . $_POST["perpage"] . "&StyleSheet=" . $_POST["StyleSheet"] . "&xslt=" . $_POST["xslt"] . "&priceOrder...

Edit .doc or .docx file using php

Hi friends, I have to modify the uploaded .doc or .docx file in php. I googled but i only found how to read that. I want the word file as it is and put text at the bottom of that MS Word file at run time. How is this possible anyone know please reply or give me example script. Thanks, ...

Where can I find the apc extension for PHP 5.2.8 in windows?

I know it's not the latest version, but need to stick to it for the project. Anyone knows where I can get apc extension for php 5.2.8? ...

PHP output messages while script in process

For example i'm looping through a big file, and after counter reaches 1000 parsed strings i need to echo message, that 1000 string have been parsed and calculate % of overall completed strings. Is it possible to make something like that with output buffer? ...

DVD to FLV File Conversion Using PHP -- Is this Doable? Insane? What are alternatives?

So I have users who have told me they are interested in being able to upload videos to my site straight from DVD's (for which they own the rights, of course). I've never encountered this before, but I would imagine this would take an enormous amount of resources and would clog up the servers, which I would like to avoid. A basic googl...

scrape the data from html page php

hello I need to scrape the data from an html page <div style="margin-top: 0px; padding-right: 5px;" class="lftFlt1"> <a href="" onclick="setList1(157204);return false;" class="contentSubHead" title="USA USA">USA USA</a> <div style="display: inline; margin-right: 10px;"><a href="" onclick="rate('157204');return false;"><img src...

maximum numbers which can be sent in kannel

I have setup a kannel and sending SMS using HTTP interface. I have tried sending SMS to 2 numbers. My question is how many numbers can I send-to in single URL. ...

Do I need a SMTP server in using the PHP's mail() function

Do I need a SMTP server in using the PHP's mail() function? p.s. I am on a share hosting account, so I cannot install a SMTP server and they don't provide that. ...

chat rooms implementaion

hi everyone can you give me an idea about how to implement chat room using PHP and MySQL Thanks ...

PHP: What do you use to write it?

Possible Duplicate: What is the best IDE for PHP ? Hello again everybody, I finish my work placement next week and have over a month off before I start my studies again. Being the super cool party animal that I am I have decided to use the time getting a firmer grip on PHP. I recently bought the highly recommended book 'PHP ...

PHP iDisk\Webdav Client

Hello, I need to upload files to iDisk drive. I've found that iDisk has webdav interface, and it's working fine with desktop clients. Unfortunately I wasn't able to find suitable WebDav client for PHP, and can't find out how to use cUrl to upload files to WebDav. The only client class I've found doesn't run on my hosting (we are using s...

Imagick (Imagemagick on PHP): serve a file without saving to disk first?

I'm trying to use Imagemagick (actually PHP's Imagick) to create and output (serve) an image without saving it to disk first. Currently I'm having to save the file and then use verot upload class to serve the image. I'm hoping there's something simple that I'm missing. Any suggestions/advice will be much appreciated. (Apache 2 server...

How do I get this 2 SQL querys to be 1

Tables are: user_table(user_id, user_name) , votes_table(id,user_id, vote_date, votes) $sql = SELECT user_id, sum(votes) AS sumvotes, vote_date FROM votes_table WHERE vote_date > 1279749600 ORDER BY sumvotes DESC LIMIT 10 $result = query($sql) foreach user_id in $result $sql = SELECT user_id, username FROM ...

onclick pass class of element to javascript

i wrote a code like this <?php $extCount = 0; foreach($this->externalReferal as $externalReferal) { $extCount++; ?> <div class='fieldtestPct' > <div class='fieldItemLabel'> <label for=''><?php echo $externalReferal->getConsultantname(); ?> ( <?php echo $externalReferal->getSpeciality(); ?> )</label> </di...

Change price of product on store's website (Magento)

Is there a way(by codehack if neccesary) to change the price of a product per store website, so from display in search results and individual product view all the way to checkout and order information I need this for a multishop website where some shops can offer a product at lower price depending on how much they paid and there's an ex...

How to convert HTML to image with PHP

Possible Duplicate: Screenshot of current page using PHP How to convert HTML to image with PHP , have idea!!! ...