Posts by Natalie • 33 points
5 posts
-
0
votes0
answers123
views -
1
votes2
answers121
views -
1
votes2
answers121
views -
1
votes2
answers236
viewsQ: The preg_replace is cutting letters with accent
$slug = preg_replace('/[^a-z0-9]+/i', '-', trim(strtolower($_POST["titulo"]))); Example: I send: Esse é um titulo de uma página He returns: esse-um-titulo-de-uma-p-gina As you can see, you’re…
-
0
votes1
answer36
viewsQ: How to update a column once per page viewed?
I’m trying to create a hit counter, this code updates my column 1 time per session, but what I want is to update my column whenever the user views a new page. if(!isset($_SESSION))session_start();…