View Single Post
  #9  
Old 12-22-2012, 10:23 AM
powerchaos's Avatar
powerchaos powerchaos is offline
WebMaster
 
Join Date: May 2008
Posts: 130
Gender: Male
Credits: 10,153
powerchaos
Send a message via AIM to powerchaos Send a message via MSN to powerchaos
Default

i write the scripts on a old way with a lot of statements ( if equal to -> continue )
when the version 1.3.2 is written with classes ( get $data from -> if true -> continue )

because of that difference , the data get taken on a differend way

the function stays the same , but how the data get taken is differend
by changing the way the data get taken can it be rewritten

for example
PHP Code:
<?
mysql_connect 
($host,$username,password);
$query mysql_querry($database);

while (
$output mysql_array($query));
{
echo 
"$output<br>";
}
?>
and in 1.3.2 is it written like this
PHP Code:
<?php
$output
->$array->$database;
echo 
"$output<br>";
?>
ofcourse is this above a example , but it shows a difference of the writing way i mean

Greetings From PowerChaos
Reply With Quote