Archive for the ‘php’ Category

buddypress for socialnetworking site

Hello, I was trying to setup the wordpress mu for my site www.mundhu.com. I successfully set it up. Now i wanted to make it more social and found out about buddypress. According to the site buddypress will transform a vanilla installation of wordpress mu in to the socialnetwork platform. So I thought to give it [...]

Getting stock information from yahoo.

Here is a function to get stock quote information from yahoo:

function getquote($symbol)
{
if (empty($symbol)) {
$symbol = '^dji';
}
$fields = 'sl1d1t1c1ohgv';
// we use yahoo to get the quotes
//http://download.finance.yahoo.com/d/quotes.csv?s=%5EDJI&f=sl1d1t1c1ohgv&e=.csv
$host = 'http://download.finance.yahoo.com';
// construct the url
$url = $host . '/d/quotes.csv?s='. urlencode($symbol) .'&f='.$fields.'&e=.csv';
// ask yahoo for the .csv file
$csv = fopen($url, "r");
$data = fgetcsv($csv,10000,",");
return $data;
}

How to use the above function:
Forst of all [...]

ok here is some ideas to do it. I have done it. But i don’t use phpizabi any more. I have developed my own script. And i had transferred the users, contacts, user gallery to my new script using this method so it can be used by you to convert the phpizabi contact, gallery system [...]

Storing your session to database in php

I am developing a custom solutions for my projects. I was finding solution to secure my php applications. As security is top concerned when I develop my applications. I had to develop a solution for a shared hosting environment and found out that the session hijacking was a big problem while on shared [...]

Hello everybody, My exams are over and it’s time to work now. Currently I am working on www.kiratisaathi.com, I am working on it to completely change the site from phpizabi to a custom script I am building. The new script will be completely new but will use the same userbase as the site has more [...]

Mundhum.com released

This is a phpbb3 based site. In this site, I have disabled the default registration and account management system of phpbb3 and provided access to users from kiratisaathi.com which is a phpizabi based site. I have changed some theme of default prosilver to match the look of my site.
The tutorials i got useful for developing [...]

starter’s tutorial for php

Here are the link to the best php tutorials available for starter.
tizag.com’s php tutorial
-Indeed a very good tutorial. Will help you learn faster with clear examples.
Php manual
-What else can be better than the well documented manual itself. Visit the manual page or download it from here
These two can be enough for you to start of [...]