goto C
goto Xamp
Goto Apache
Goto conf
Goto extra
Open httpd-xampp.conf
change this para into this:
old:
Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
<Directory "C:/xampp/phpMyAdmin">
AllowOverride AuthConfig
Require local
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</Directory>
Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
<Directory "C:/xampp/phpMyAdmin">
AllowOverride AuthConfig Limit
Require all granted
Order allow,deny
Allow from all
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</Directory>
Wednesday, July 3, 2019
Monday, June 24, 2019
Add column in sql
Alter table "Table_Name"
Add 'New_Column_Name' 'Datatype';
alter table product
Add quantity bigint;
Add 'New_Column_Name' 'Datatype';
alter table product
Add quantity bigint;
Drop column In sql
Alter table 'Table_name' drop column 'Column_Name'
alter table product drop column [Date];
alter table product drop column [Date];
Saturday, June 22, 2019
Wednesday, May 15, 2019
Saturday, May 4, 2019
Thursday, May 2, 2019
How to solve network sharing problem (There is no folder)
Press windows + r
type services.msc
Select Standard
Goto Dns Client
Select Automatic
Goto Function Discovery Resource
Select Automatic
Goto SSDP Discovery
Select Automatic
Subscribe to:
Posts (Atom)
-
<?php if (isset($_POST['Add'])){ $a = $_POST['num1']; $b = $_POST['num2']; $c = $a + $b ...
-
Ans: The .Net Framework is an infrastructure that enables building, deploying and running different types of applications and services using...



