Posts by Vinicius Eduardo • 351 points
8 posts
-
5
votes2
answers160
viewsQ: How do these sites load your HTML?
I ended up looking at source code from sites like Gmail.com and Secret.ly and noticed that HTML is embedded in Javascript, what is this technology that they use? Stay this way: <script>var…
-
0
votes1
answer45
viewsQ: preg_replace_callback does not return values
That my code is not returning the values $owner and $mid in function make_user() Because? preg_replace_callback('/(^|[^a-z0-9_])M([a-z0-9_]+)/i', function($matches, $owner, $mid) { return…
-
1
votes1
answer421
viewsQ: Catch all Divs with jquery
I have several Ivs on my site, where they contain the following class "code$Numb" where $Numb is a random number, as do to capture all Ivs with the code regardless of $Numb?
jqueryasked Vinicius Eduardo 351 -
2
votes3
answers165
viewsQ: Rotate text and replace first link
I have a variable named $text where text is stored that the user writes. `$text = "Hahahha that cool this site, I was able to answer all my questions there /" ` What I need? I have a function named…
-
0
votes2
answers2569
viewsQ: Upload progress with jquery or php
Guys I use a script to upload images with PHP and JQUERY and would like to display the percentage of progress while it is sending, how can I do that? Thank you..
-
3
votes1
answer93
viewsQ: Convert string to array
Guys I get data from my database that comes this way 1,2,3,4,5 And I need to run each number, because each number is a user ID and I want it to show each one separately without comma or anything,?…
-
5
votes1
answer1137
viewsQ: Find ID in a delimiter-separated ID column in Mysql
I use a table called chat and inside it has a whole structure for my chat script and I’m trying to create chat in groups, so far so good. However, within the table chat has a column called…
-
5
votes2
answers1589
viewsQ: Generate single color for each result
then. i have a system of comments anonymously in a project of mine that in place of the avatar it puts the abbreviation of the person’s name, for example: Vinicius Eduardo -> VE and I want to…