fork(1) download
  1. <?php
  2.  
  3. function replaceSEF ($content,$row){
  4. global $mysqli;
  5. //передаю глобальную переменную с доступом к БД
  6. $result_set = $mysqli->query ("SELECT 'alias' FROM 'sef' WHERE 'link' = '$content' );
  7. //сюда запихиваю все найденные элементы
  8. $row = $result_set->fetch_assoc();
  9. //записываю массив найденного скраба
  10. return $row;
  11. //возвращаю его
  12. }
  13. $content = $_POST ['link'];
  14.  
  15. replaceSEF($content);
  16. echo $row
  17. $mysqli-> close();
Runtime error #stdin #stdout #stderr 0.01s 82880KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected end of file in /home/T9Mopj/prog.php on line 13