I am practicing the SESSION_START () in php.
In the following code I show you how to enter names in the form, a list is created below with the names entered, each name has a checkbox in front and what I can not do is that when I check the che...
I'm doing a history of updating the records in my mysql database
I have two tables in phpmyadmin equal, one that is in which I record data and the other just created called updateLogs where the trigger acts on the changes made in the first...
I currently have this script
$str = $_GET[numero];
function permute($str,$i,$n) {
if ($i == $n) {
echo $str.'<br>';
} else {
for ($j = $i; $j < $n; $j++) {
swap($str,$i,$j);
permute($s...
I need to save the id's in the variable $ last [], but it keeps me empty or zero.
The sp_ins_ott_registro () is a sp that inserts in a table of 5 attributes, which are seen there and the AI.
This way it returns zero to me.
for (...
This is the curl code
if($this->request->is('ajax')){
$datos = $this->request->data['curp'];
$this->response->disableCache();
$this->autoRender = false;
clea...
I already made a connection to sql server from xammp and it works perfect, the question is how should I change the connection parameters to access from a web host on the internet? what ports should I open or what ip should I put?
I hope you can...
I do not know how to express my question but the issue is this, I'm doing a job for a course which I'm taking but I'm at a standstill, the work basically consists in making a simple "copy" of a social network, These are the requirements that the...
was making a window to show a result of another web page that requires the sending of data by POST. So far no problem, I open a form and send it and it works correctly. The problem comes when I want to put it in an IFRAME (to be shown in a box i...