Posts by Rogarfil • 59 points
7 posts
-
0
votes1
answer29
views -
-1
votes1
answer29
views -
-1
votes1
answer61
viewsA: List BLOG and show on the same page the chosen ARTICLE
The blog page stayed this way and solved: // Read URL (array) $url = $_SERVER['REQUEST_URI']; $value = explode("/", $url); if (isset($value[3])) { <!-- Blog Grid --> <section…
-
0
votes1
answer61
viewsQ: List BLOG and show on the same page the chosen ARTICLE
I am working with PHP and use friendly URL. By clicking on the link <a class="nav-link" href="<?php echo URL::getBase(); ?>blog" tabindex="12">blog</a>, my URL gets:…
-
0
votes1
answer53
viewsQ: Get SRC attribute value of an image in a string II
Dear Anderson, after studying your code in PHP and adapting it to my needs. A second question I’m working with objects and not as an array, if by chance there are two identical id for different…
-
2
votes1
answer862
viewsQ: Get SRC attribute value of an image in a string
I have a text where there are several registered images and the problem is this: only this tag img I know the name of id and through this id I need to know the address of the image on src. Example:…
-
2
votes1
answer36
viewsQ: Conditions on dates in MYSQL know which last record and penultimate
This is the following I need to perform a query in my database for the last registration date and where the featured is = to 0. Run this way smoothly: SQL1 = SELECT id, created, featured FROM…