Questions tagged as 'php'

1
answer

help mod_rewrite php

I have a structure as follows: index.php .htaccess assets app.js modules main default.php demo default.php The .htaccess is: RewriteRule ^([a-zA-Z0-9\_]+)/?([a-zA-Z]+)?$ index.php?module=$1&view=$2 [L,NC]...
asked by 19.04.2016 / 14:01
2
answers

Enter Data in a MySQL DB from Laravel

Controller class RegistroController extends Controller { public function RegistroController(){ return view('registra'); } public function storeg(Requests $request) { \App\registro::RegistroController([...
asked by 16.04.2016 / 17:34
2
answers

Avoid repeating value in option value in php

Good morning, I am working with variables within option value, but I can not avoid repeated options, in the database the box field the information it contains is repeated but I do not know how to show it only once the information within the sele...
asked by 21.07.2016 / 16:26
2
answers

How to view user profile?

Veran I have an autocomplete textbox, which is autocomplete when I'm writing from a database (Mysql). Well I want you to help me is to select the ID of those elements and go to the profile of each user that I select. PD: They tell me that I h...
asked by 08.09.2016 / 02:23
1
answer

Show image stored on server in php

I'm trying to make a photo gallery to learn a bit about programming in php, but I've been stuck when it comes to wanting to show the images. The images are stored on the server and the path in the database. The problem is that all the div tha...
asked by 31.08.2016 / 20:30
1
answer

How to use Friendly Variables?

How to clean the url when passing values by url and that htaccess recognizes them as variables and this helps to execute the content. RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule...
asked by 02.01.2019 / 22:27
1
answer

Error with PHP "Notice: Undefined index:" and does not connect to DB

Good I am trying to save comments in BD but it returns me the error that appears in the title of this question. I have the following FORM in an index.html <html> <head> </head> <body> <form id="form" action="g...
asked by 02.01.2019 / 19:00
1
answer

Is it possible to insert the iframe of a google maps map?

I am creating a tool where users are given the possibility to insert the iframe of google maps in a text field, that is, this: <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d481728.80462972773!2d-99.42381643176068!3d19.3...
asked by 22.12.2018 / 02:07
1
answer

Comparison of two dates in php

I am trying to compare 2 dates in my sentence .. I am more than sure that I must return a record. but I do not know why the condition is not met ... any ideas? global $wpdb; $usuarios = $wpdb->get_results("SELECT m.*, u.user_login...
asked by 13.12.2018 / 12:49
1
answer

Create Class for php chat

As the title says, I wanted to know how you can create a Class for a PHP chat that has the following structure. $mensaje->send $mensaje->delete But I do not know how, because you have to create the constructor of the class in the foll...
asked by 13.12.2018 / 16:54