опыт "нарезки и натягивания" из PSD макетовэто то, чем собственно и должен заниматься в моем понимании верстальщик - делать html код из PSD макетов.
<?php
class Myclass
{
function mymethod($par3,$par4)
{
include 'add/'.$par3;
}
}
class MyClass2
{
function action_index() {
$this->var1 = new Myclass();
$par1 = 'ex3.php';
$par2 = 123;
$this->var1->mymethod($par1,$par2);
}
}
$child = new MyClass2();
$child->action_index();
<?php
echo $par4;
?>
$q="UPDATE payment SET status=1,code='$code' WHERE id='$_GET[id_pay]'";
mysql_query($q);
За это хочется убивать если честно.$q = 'UPDATE payment SET status=1, code="' . mysql_real_escape_string($code). '" WHERE id= "' . mysql_real_escape_string($_GET[id_pay]) . '"';
select distinct user_from as user_id from message where user_to = 123
union distinct
select distinct user_to as user_id from message where user_from = 123
select
distinct if(user_from=123,user_to,user_from) as user_id
from `message `
where user_to = 123 OR user_from = 123
<input type="text" placeholder="поиск" name="searchword" method="$_GET">
Правильно пишется method="GET"RewriteRule ^search/ /search.php?%{QUERY_STRING} [L]
RewriteRule ^search/([A-Za-z0-9-]+)$ /search.php?page=$1&searchword=$2 [L]
RewriteRule ^search/([A-Za-z0-9-]+)/?$ /search.php?page=$1 [QSA,L]