Posts by Kaleb Figueiredo • 167 points
12 posts
-
-2
votes1
answer23
viewsQ: Mysql query that returns only records that start with a particular chunk
I have a field in my table where the entered data is processed directly in PHP. The value of this field is concatenated to allude to the first record with a similar start. Example: first record is…
-
-1
votes1
answer156
viewsQ: Problems installing broken phpMyAdmin - dbconfig-*
I have a problem trying to install phpMyAdmin on my Ubuntu Server 16.04. I installed Mysql normally, but when I install PMA, the following error occurs in the dependent packages dbconfig-common,…
-
0
votes1
answer211
viewsQ: Take variable from one function to another function within the same class?
I need to capture the variable from one function to another function within the same class. Below follows example scope. public function upPicture() { $variavel = "Hello World!"; } public function…
phpasked Kaleb Figueiredo 167 -
0
votes0
answers150
viewsQ: Display PHP image by load() or html()
I created a PHP file, which uses the Wideimage library (with header header ("Content-type: image/jpeg")), to manipulate images. Inside this file, I capture some parameters via GET and create an…
-
0
votes2
answers1413
viewsQ: Mysql - Select comparing fields from the same table
I know it’s supposed to be simple, but I’m having a hard time getting through this. I have a table called "enterprise". In this table, I have 4 specific fields that store different ID’s from other…
-
1
votes3
answers483
viewsQ: Store URL snippet - Javascript
I am capturing a certain value of the URL through Javascript, but I’m having difficulty at some point. Follow below. var url = window.location.href; var page = url.split('/'); var page =…
-
0
votes1
answer198
viewsQ: Doubt - Session with Angularjs + PHP
Guys, I’m racking my brain here, I’ve penetrated the entire Internet, but I haven’t been able to solve a question yet. I am creating a Quiz application using Angularjs, however, I am not able to…
-
1
votes2
answers137
viewsA: Faded transition between sprites
Felipe, I did something very similar in a project of mine. It was like this: HTML <div id="navLateral"> <ul> <li class="item1"> <a href="#">OP1</a> </li> <li…
cssanswered Kaleb Figueiredo 167 -
3
votes0
answers51
viewsQ: Change CSS element depending on the SELECT option using jQuery
I’m having a hard time making a certain interactivity on my site. For example, there is a select in HTML with 3 options, and when the user selects certain option, there would be a change in the CSS…
-
6
votes1
answer4491
viewsQ: Make URL open in the same Activity
I’m creating a WebView for Android. When I load the App, the imported page works perfectly, but when I click on some link page, that same link opens in another browser. I wonder how I can make all…
-
3
votes1
answer1253
viewsQ: Date and time expiration event - PHP
My question is the following: I created a function in PHP to check the current date and check the deadline for the end of a contest. Except that the end of this contest will have a specific time,…
-
0
votes1
answer250
viewsQ: Action 'onlogin' - Facebook button plugin
I have an App on Facebook, and the home page has a button for if the user is not logged in to Facebook, do the same. This button is a plugin of Facebook itself. I have read all the documentation of…