Posts by Bruno Serrano • 151 points
12 posts
-
-1
votes1
answer41
viewsQ: Load php file with jquery
Hello, First of all I apologize if the question is not well structured. I’m building a content/stock and similar management system.. I leave below a print screen where I try to explain how this…
-
-1
votes1
answer88
viewsQ: display the result of a foreach outside the loop
Hello, I need to present the result of a foreach out of the loop. The way I have been doing only presents one result. What I’m doing wrong? //Check bad words $badWords = array('palavra1',…
-
0
votes2
answers746
viewsQ: Compare value of two fields with jquery
I have a problem comparing values of two fields input. I want an action to happen if the value being inserted is less than the value of the input occult. Imagine that the value of the previous one…
-
0
votes1
answer61
viewsQ: Count an array of a function?
How do I do echo of counting the result of the following function? public function get_Myinteresses() { global $db; $myInteresses = array(); $get_interids = $db->query(sprintf("SELECT * FROM…
-
-3
votes1
answer37
viewsQ: Detect date used with PHP
How do I detect through php the date of the user? I mean, I know how to track the date, but comparing it to the server date, so it’s not right because of the different time zones. I leave down my…
-
-1
votes2
answers68
viewsQ: Static block after the first while result
How do I place a static block of advertising after the first result of a while in php? I leave down my while: while($fetch = $get->fetch()){ } Like this:…
phpasked Bruno Serrano 151 -
1
votes2
answers132
viewsQ: How to do SEO in practice
I have some doubts about how to practice SEO. Probably not just me with these doubts. I know there are many articles here about seo, I did research through the site and I was not clarified, because…
seoasked Bruno Serrano 151 -
3
votes2
answers1051
viewsQ: Know if you are really a Cdn server
Good morning, Recently, in one of my websites, the owner of the hosting service, proposes to pass the content (videos and images) to Cdn. How do I know you actually switched to Cdn? How do I test,…
cdnasked Bruno Serrano 151 -
2
votes1
answer49
viewsQ: How to do time reading in the database?
Good night, I am here trying to send a value to a php file, and get a response from that same file, that automatically. But something is going wrong. I am a beginner in this area and am having some…
-
3
votes1
answer47
viewsA: Mootools detect page movement
I’ve already got.. Anyway stay here, someone might need. var posts; window.addEvent('domready', function(){ posts = $$('.post'); }) window.addEvent('scroll', function(e){ var altura =…
-
3
votes1
answer47
viewsQ: Mootools detect page movement
How do I detect when a page is rolled to a certain point, and when it reaches that point perform a certain action. That is, using Mootools, as the Event scroll, change the style of an element. Take…
-
1
votes1
answer136
viewsQ: Animate the position of div elements with Mootools
How do I change the position of a div after loading the page? That is, having two div’s that after loading the page one appears on the right and the other on the left, this using Mootools. The…