Posts by user2321982 • 123 points
5 posts
-
4
votes2
answers489
viewsA: Detect URL Webview
Good evening Bruno, I think I discovered + or - what you want, the data that is caught you need to filter with regex, will depend a lot on what you want, because it appears all Source, but…
-
0
votes2
answers86
viewsA: PHP Application Class
cannot, but you can use the task manager, in Linux it is Cron. see this tutorial can be useful. http://www.deivison.com.br/como-agendar-tarefas-php-no-cron-do-cpanel/…
phpanswered user2321982 123 -
0
votes2
answers93
viewsA: mysql organizing database entries
believe it is not possible, but you can arrow the value to each deletion. ALTER TABLE users AUTO_INCREMENT=4;
-
0
votes2
answers51
viewsQ: Filter Useagent Via Database
I created a table that receives some visitor information, ID, Useagent, Address and proxy. I am making a chart type those pie (Chart pie) and would like to show the amount of visits of Y browsers…
-
0
votes4
answers912
viewsA: Behavior of the function preg_match() for short names
Try this. /** * Abreviar Nome * @param String $string Name user * @return string */ function FirstAndLastName($string) { $nome = explode(" ", $string); $first = $nome[0]; $last = end($nome); if…