Posts by Arthur • 63 points
5 posts
-
0
votes0
answers49
viewsQ: Mysql and PHP SQL_CAL_FOUND_ROWS and FOUND_ROWS()
I am trying to create a data display list that returns the TOTAL of records for me to run after paging. To avoid making 2 queries in a database with more than 5 thousand records for the criteria I…
-
0
votes0
answers117
viewsQ: Bug CSS Chrome, IE and Firefox
I’m not able to understand a bug between browsers. See this image of how it looks in Chrome and IE and how it looks in Firefox !(https://ibb.co/mv5DRS) // CSS (Less) div{ p{ position: relative;…
-
0
votes1
answer247
viewsQ: REGEX to get information inside a string
I’m studying PHP OO and part of my study is building a Class that works on a template engine. I converted the file to a string with file_get_contents and now I want to take a part of this string to…
-
2
votes1
answer604
viewsQ: Call to Undefined Function transliterator_transliterate() in php 5.512 using wampserver 2.5
I am studying SQLITE3 and PHP and checking an example of the PHP Manual appeared the following error: Fatal error: Call to undefined function transliterator_transliterate() Example:…
-
4
votes2
answers960
viewsQ: Preg_replace for Preg_replace_callback
I’m having trouble migrating one script mine that clears characters from a sentence. The preg_replace (depreciated) I use the value and key of the array for the exchange, however the…