Me Arun.S.S, currently works for Reflections Infos web development team, as software engineer. Coming from God’s Own Country Kerala, South India.
- Interests
- While not working on modern web technologies, Am enjoys travelling, playing and blogging.
- PC Specs
- PHP, HTML, JQuery, AJAX , MYSQL, .NET, SQL SERVER, Windows environment.
21 Posted Topics
Hi, I have a bulk of pdf documents. I want to read that using php script. I searched a lot, but everyone is about creating pdf files. Here I dont want to create pdf file but I want to read it. Is there any way to read it php? -Arun | |
Hello All, I have two tables. One for messages and one for comments. For each entry in messages table there will be multiple records in comments table. Now I want to select the top 5 messages and top 10 comments for each message. My table structure is Messages ---------- MID … | |
Am trying to create a message and commenting system (like facebook wall). I have two tables messages -------- mid creator_id message created_date ---------------------------------------------------- 1 3 msg one date 2 4 msg two date 3 8 msg three date 4 3 msg four date comments --------- cid mid creator_id comment created_date … | |
Re: Check this [url]http://arunss.wordpress.com/2009/12/09/sending-email-from-localhost-using-php/[/url] | |
Re: try this [url]http://arunss.wordpress.com/2009/12/26/rewrite-search-url/[/url] | |
Hi I have to find an array key exists in an array. My array structure is $result['GetSessionListResult']['diffgram']['NewDataSet']['Table'] (which is a result from a webservice). Then I have to iterate the values of the ['Table'] in a foreach like [CODE] foreach($result['GetSessionListResult']['diffgram']['NewDataSet']['Table'] as $item). { } [/CODE] . Ok Then my problem … | |
Re: [CODE] function findPosX(obj) { var curleft = 0; if (obj.offsetParent) { while (1) { curleft+=obj.offsetLeft; if (!obj.offsetParent) { break; } obj=obj.offsetParent; } } else if (obj.x) { curleft+=obj.x; } return curleft; } function findPosY(obj) { var curtop = 0; if (obj.offsetParent) { while (1) { curtop+=obj.offsetTop; if (!obj.offsetParent) { break; … | |
Am designing a web page for mobile browsers. I have a div (having id 'wrap') which is 320px width and margin:0 auto. My all contents including header is within this wrap div. When I view it on my desktop browser it is positioning in center with a width of 320px. … | |
Re: My vote is for Codeigniter. very very easy and speeeeeeeeeeeeeed... | |
Re: First of all, sorry for the delay. I was busy with my office work. This code will create new files for each hour(1am.txt,2am.txt...) and place in folders having the name of current date( eg :2010_01_29). You can read all files in that folder later. [CODE] <?php $songs = file('songs.txt'); //var_dump($songs); … | |
Re: [CODE]<? $fields=""; foreach ($_POST as $key=>$value) { if ($key != "submit" && $key != "type") { $fields = ($fields!="")?$fields.",".$key:$key; } } echo $fields; ?>[/CODE] | |
![]() | Re: try this [url]http://arunss.wordpress.com/2010/01/14/hide-download-link-of-a-file/[/url] ![]() |
Re: check this [url]http://arunss.wordpress.com/2009/12/26/rewrite-search-url/[/url] | |
Re: You should check [CODE] if(isset($_POST['submit'])) { } [/CODE] before php code. | |
Re: try this [CODE] <? $songs = file('songs.txt'); var_dump($songs); echo "<br /><br /><h3>result</h3>"; $filtered_songs = array_unique($songs); var_dump($filtered_songs); ?> [/CODE] | |
Re: try this [CODE]<a href="http://localhost/AA_Directory_Reader/delete.php" onClick="return confirm('Are you sure you want to delete this Entry?')">Delete</a> [/CODE] | |
Re: You can try like this... SELECT * FROM TABLE_NAME WHERE date(`CreatedDate` ) > date('2009-12-10') or SELECT * FROM TABLE_NAME WHERE date( `CreatedDate` ) BETWEEN date( '2009-12-9' ) AND date( '2009-12-11' ) [URL="http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html"]http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html[/URL] | |
Re: check this site, here you can send email to any account using your gmail username and password from localhost. [url]http://arunss.wordpress.com/2009/12/09/sending-email-from-localhost-using-php/[/url] | |
Re: Do you want to convert [CODE]http://localhost/demo/sap[/CODE] or [CODE]http://localhost/demo/search/sap[/CODE] ??? | |
Re: check this site, here you can send email to any account using your gmail username and password from localhost. [url]http://arunss.wordpress.com/2009/12/09/sending-email-from-localhost-using-php/[/url] |
The End.