Dec 27

With this code u can upload any data like zip file to anywhere with a upto 100GB per second speed

PHP Code:

PHP

if ($_GET[xfer]) {

if ($_POST[from] == “”) {

print “You forgot to enter a url.”;

} else {

copy(”$_POST[from]“, “$_POST[to]“);

$size = round((filesize($_POST[to])/1000000), 3);

print “transfer complete.<br>

<a><a href=\”$_POST[from]\”>$_POST[from]</a><br>

<a><a href=\”$_POST[to]\”>$_POST[to]</a> : $size MB”;

}

} else {

print “<form action=\”$PHP_SELF?xfer=true\” method=post>

from(http://): <input name=from><br>

to(filename): <input name=to><br>

<input type=submit value=\”transload\”>”;

}

Dec 21

My Achievements

Posted by admin in My Achievements

Rajshekhar Rajaharia - Director & Founder of  Yolike Technologies

Rajshekhar Rajaharia is a young and emerging serial entrepreneur and has a wide experience in the field of web tools and web programming & developing innovative web applications.

At age of 17, Raj has found major mistakes in India’s biggest internet provider’s login form.

At age of 18, Started a site Yolike.com (Which is in todays date one of the india’s biggest entertainment portal in many fields)

At age of 19, Started diversifying Yolike in the form of, introduction of, SMS Gateway Yo2SMS.com

At age of 20, Helped Police and others in many criminal cases.

At age of 21, Started Announced Yolike Technologies with a great capital.

At age of 21, was on many TV Channels and up to 20 National Newspapers on Front Page.

At age of 21, Started Cyber Cell in Rajasthan in association with Police Department.

Now the owner of an established company, Named as Yolike Technologies, which provides a number of various types of web & desktop application services.

In the recent company’s expansion planning workshops are going to be organised regarding Web and desktop application IT fields.

And still works are going on……

Front Page on Danik Bhaskar

Front Page on Danik Bhaskar

Front Page on Danik Bhaskar All over India

Front Page on Danik Bhaskar All over India

M on Divya Bhaskar, Gujarat

M on Divya Bhaskar, Gujarat

Bikaner

Bikaner

Press Trust of India Article Page1

Press Trust of India Article Page1

Press Trust of India Article Page2

Press Trust of India Article Page2

Press Trust of India Article Page3

Press Trust of India Article Page3

Live on ETV Rajasthan

Live on ETV Rajasthan

Office

Dec 20

you can retrieve emails from your Gmail account in no time!

Here is the Codes:-

CSS

div.toggler { border:1px solid #ccc; background:url(any background) 10px 12px #eee no-repeat; cursor:pointer; padding:10px 32px; }

div.toggler .subject { font-weight:bold; }

div.read { color:#666; }

div.toggler .from, div.toggler .date { font-style:italic; font-size:11px; }

div.body { padding:10px 20px; }

JavaScript

window.addEvent(’domready’,function() {

var togglers = $$(’div.toggler’);

if(togglers.length) var gmail = new Fx.Accordion(togglers,$$(’div.body’));

togglers.addEvent(’click’,function() { this.addClass(’read’).removeClass(’unread’); });

togglers[0].fireEvent(’click’); //first one starts out read

});

PHP Codes

/* connect to gmail */

$hostname = ‘{imap.gmail.com:993/imap/ssl}INBOX’;

$username = ‘Your Gmail Username’;

$password = ‘Your Gmail Password’;


/* try to connect */

$inbox = imap_open($hostname,$username,$password) or die(’Cannot connect to Gmail: ‘ . imap_last_error());


/* grab emails */

$emails = imap_search($inbox,’ALL’);


/* if emails are returned, cycle through each… */

if($emails) {

/* begin output var */

$output = ”;

/* put the newest emails on top */

rsort($emails);

/* for every email… */

foreach($emails as $email_number) {

/* get information specific to this email */

$overview = imap_fetch_overview($inbox,$email_number,0);

$message = imap_fetchbody($inbox,$email_number,2);

/* output the email header information */

$output.= ‘<div class=”toggler ‘.($overview[0]->seen ? ‘read’ : ‘unread’).’”>’;

$output.= ‘<span class=”subject”>’.$overview[0]->subject.’</span> ‘;

$output.= ‘<span class=”from”>’.$overview[0]->from.’</span>’;

$output.= ‘<span class=”date”>on ‘.$overview[0]->date.’</span>’;

$output.= ‘</div>’;

/* output the email body */

$output.= ‘<div class=”body”>’.$message.’</div>’;

}

echo $output;

}


/* close the connection */

imap_close($inbox);

—————————————————–

With your individual username/password settings set, we connect to Gmail. Once connected, we request all emails. If we find emails, the newest emails appear on top. For every email we receive.

Dec 19

Let’s see, what a single PHP page can do….

IMDB (Internet Movie DataBase) has info on every movie ever made (or so it seems). Lets see how to grab IMDB information with a single PHP page….

PHP Code

<?php

//url

$url = ‘http://www.imdb.com/title/tt1166100/’;

//get the page content

$imdb_content = get_data($url);

//parse for product name

$name = get_match(’/<title>(.*)<\/title>/isU’,$imdb_content);

$director = strip_tags(get_match(’/<h5[^>]*>Director:<\/h5>(.*)<\/div>/isU’,$imdb_content));

$plot = get_match(’/<h5[^>]*>Plot:<\/h5>(.*)<\/div>/isU’,$imdb_content);

$release_date = get_match(’/<h5[^>]*>Release Date:<\/h5>(.*)<\/div>/isU’,$imdb_content);

$mpaa = get_match(’/<a href=”\/mpaa”>MPAA<\/a>:<\/h5>(.*)<\/div>/isU’,$imdb_content);

$run_time = get_match(’/Runtime:<\/h5>(.*)<\/div>/isU’,$imdb_content);

//build content

$content.= ‘<h2>Film</h2><p>’.$name.’</p>’;

$content.= ‘<h2>Director</h2><p>’.$director.’</p>’;

$content.= ‘<h2>Plot</h2><p>’.substr($plot,0,strpos($plot,’<a’)).’</p>’;

$content.= ‘<h2>Release Date</h2><p>’.substr($release_date,0,strpos($release_date,’<a’)).’</p>’;

$content.= ‘<h2>MPAA</h2><p>’.$mpaa.’</p>’;

$content.= ‘<h2>Run Time</h2><p>’.$run_time.’</p>’;

$content.= ‘<h2>Full Details</h2><p><a href=”‘.$url.’” rel=”nofollow”>’.$url.’</a></p>’;

echo $content;

//gets the match content

function get_match($regex,$content)

{

preg_match($regex,$content,$matches);

return $matches[1];

}

//gets the data from a URL

function get_data($url)

{

$ch = curl_init();

$timeout = 5;

curl_setopt($ch,CURLOPT_URL,$url);

curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);

curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);

$data = curl_exec($ch);

curl_close($ch);

return $data;

}

?>

……………………………………………………………………………………………………..

Result—

Demo

That’s a great IDEA to make a dynamic scrpit of movies detail… using a single php page.

I Designed a PHP Scrpt using this method which you can see here….

Yolike Movies Details

…………….

Hope you will like this great !dea……

Dec 13

About Me

Posted by admin in About Me

Rajshekhar Rajaharia

Rajshekhar Rajaharia

Rajshekhar Rajaharia

"Think Big, Think Fast,
Think Ahead.
Ideas are no ones,
Monopoly"
  • Full Name: Rajshekhar Rajaharia
  • B’Day: 26th August
  • Birthplace: Jhunjhunu in Rajasthan
    India
  • Carrer: Currently studying + Business
  • Short carrer Brief:
    In the year 2007, i gotta hug crazzze in Computer & Internet.
    Currently Studying Engg. CS………
    In the year 10May, 2007 registered a domain named TheBillu.com for fun.
    And after 2-3 months started work on thebillu.com as entertain portal.
    In the year 20Dec, 2007 registerd an another domain named Yolike.com and transfer all datas from TheBillu to Yolike.com. (Till this time the past was very bad & sad)
    And year August 2008 my good time starts……
    Today i have owned many worlds most popular wesites, SMS Getway, a Company and an Organisation.
  • Email:
    GTalk: raj.shekhar777@gmail.com
    Yahoo: rrajaharia@yahoo.com
    Working email: raj@yolike.com
  • Contact No:
    Mob1: +91-9784515458
    Mob2: +91- 9672700012
  • Yolike.com: Yolike link
  • SMS Getway: Yo2SMS link
  • Cyber Cell: Cyber Cell India link
  • Bollywood: Bollywood link
  • Owned Websites:

  1. www.Yolike.com
  2. www.Yo2SMS.com
  3. www.Bollywood.im
  4. www.YoPlayers.com
  5. www.YoServers.com
  6. www.Cybercellindia.com
  7. www.SMSAdverts.in
  8. www.YoAlert.com
  9. www.CyberCellRajasthan.com
  10. www.YoSMS.in
  • Carrer Skills: C, C++, HTML, PHP, ASP, XML, Flash, JavaScript, SQL, J2EE, Servlets, JSP, EJB, JDBC, JNDI, JMS, JAXP, AWT, Swing, Ant, Oracle, SQL Server, IBM DB2, mySQL, MS-Access, Web2.0, DotNet, VB

Expert in:

  1. Html
  2. PHP
  3. MySql
  4. CSS
  5. Java Script
  6. XML
  7. Flash
  8. Graphics Design
  9. Photoshop
  10. Macromedia Flash
  11. Macromedia Dreamweaver
  12. Web management
  13. Search Engine Optimization
  14. Web based Control Panel
  15. CPanel
  16. PHPmyAdmin
  17. Webmin
  18. Cent OS
  19. Wordpress
  20. Joomla
  21. All Types of CMS
  22. Vbulletin
  23. IP Board
  24. All Types of forums
  25. Template Designs
  26. Logo Designs
  27. Graphics Design

contd……..

  • Carrer Interests: A successful businessman and own a multinational company
Dec 13

About my Business

Posted by admin in Business

Lots of people says….

what i do….?

Here is all about my business………..

.

.

.

.

………………………./

Dec 13

Here is all about my personal life…

.

.

.

.

…………………………………./

shared by  wordpress themes