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
const express = require('express'); | |
const mysql = require('mysql'); | |
const bodyParser = require('body-parser'); | |
const con = mysql.createConnection({ | |
host: "localhost", | |
user: "cbmis", | |
password:"cbmispass", |
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 include('header.php'); ?> | |
<div class="container"> | |
<div class="content row"> | |
<section id="top" class="twelve columns"> | |
<h5>Search for a Physician</h5> | |
<form action="physicians.php" method="get"> | |
<div class="field"> | |
<input type="text" name="q" class="text xwide input" placeholder="Search by: Physician, State or Zipcode"> |