This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\Models\Employee; | |
use Illuminate\Http\Request; | |
class EmployeeController extends Controller | |
{ | |
public function employee_add(Request $request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.content.ActivityNotFoundException; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.content.pm.PackageManager; | |
import android.net.Uri; | |
import android.os.Bundle; | |
import android.support.v4.app.Fragment; | |
import android.support.v7.widget.CardView; | |
import android.view.LayoutInflater; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fa-500px | |
fa-accessible-icon | |
fa-accusoft | |
fa-acquisitions-incorporated | |
fa-adn | |
fa-adobe | |
fa-adversal | |
fa-affiliatetheme | |
fa-airbnb | |
fa-algolia |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@page import="java.sql.*,org.json.*;" %> | |
<% | |
final String jdbcdriver="com.mysql.jdbc.Driver"; | |
final String url="jdbc:mysql://localhost/test"; | |
final String user="your_username"; | |
final String pass="your_password"; | |
Connection con = null; | |
Statement stmt = null; |