Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
А реально можно,как-то хоть на примере 6.v приделать,очень нужная вещица,люди не любят регистрацию,это сильно упрощает жизнь особенно если есть поддомены,типа форум и т.дтак там только подключаешь любой источник который имеет опенайди и усе, можно хоть сотню их добавить, а логинза собирает все действующие мейлы и не факт что потом продает их или спам ....
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /homepublic_html/classes/mysql.php on line 188
Warning: Cannot modify header information - headers already sent by (output started at /homepublic_html/classes/mysql.php:188) in /homepublic_html/admin/add_coupon.php on line 26
if ( !( $result = query( ) ) )
{
return null;
}
$array = array( );
while ( $row = @mysql_fetch_array( @$result ) )
{
$array[] = $row;
}
freeResult( $result );
return $array;
}
public function numrows( $result )
{
line 188--> return mysql_num_rows( @$result );
}
public function affectedrows( )
{
return mysql_affected_rows( @$this->recent_link );
}
public function numqueries( )
{
return $this->query_count;
}
public function insertid( )
{
return mysql_insert_id( @$this->link );
}
public function freeresult( $result )
{
return mysql_free_result( @$result );
}
public function setoffset( $off )
global $db;
global $lng;
$smarty = new Smarty;
$smarty = common($smarty);
$smarty->assign("tab","listings");
$smarty->assign("lng",$lng);
$error='';
$tmp=array();
$cp=new coupons();
if(isset($_POST['Submit'])){
if(!$cp->add()) {
$error=$cp->getError();
$tmp=$cp->getTmp();
on line 26--> } else header ('Location: coupons.php');
}
$smarty->assign("tmp",$tmp);
$smarty->assign("error",$error);
$group = new groups();
$groups_list = $group->getAll();