Posts by Bertonni Magnus • 368 points
8 posts
-
1
votes3
answers68478
viewsA: Display PDF file in the body of the HTML page
The use of iframe may bring some unwanted results such as appearing only this fragment in search results of searchers. In the method below, the PDF is directly embedded in the document. This method…
-
1
votes1
answer351
viewsQ: PHP - Fire another script into a script without aborting the current one
I have a PHP script that I need "simply shoot" another script however, without losing the current script flow. Example: <?php // um comando // outro comando //*** Aqui preciso, por exemplo,…
phpasked Bertonni Magnus 368 -
1
votes2
answers1288
viewsA: Go back to page and update data
Try to replace the method history.back() for Location.replace('sua_pagina_anterior.php'). If this does not solve it is because the logic of the homepage is not adequate or the script triggered by…
-
1
votes2
answers450
viewsA: Sending form for two php files
As Alan said, this is possible via AJAX. Even not knowing your needs, I can say that the most "cheap" will always be to do the whole processing in a single script PHP on the server side.…
-
11
votes1
answer1604
viewsQ: How to concatenate an SQL command into a Mysql Stored Procedure?
In the following show, we have an example already running in PHP. The scenario of the question is the assembly of a "navigation link" based on a data structure. $node = '006002009'; // Esta…
-
7
votes3
answers237
viewsQ: jQuery influences the application’s "performance"?
I personally love and use the jQuery library. This library influences the "performance" of the application?
-
1
votes2
answers79
viewsA: Add a login field to an existing user table
If the concern is to keep the user’s email address confidential during the login and in front of other users, there is also a simple option that is to use a text field (INPUT) type (PASSWORD) for…
-
2
votes1
answer271
viewsQ: Database with extra headers
Does anyone know any database in which, in addition to the traditional architecture (rows and columns), we could create and manipulate FIELDS, which would be available for reading and writing and…