siwwy :3 #3
					 5 changed files with 16 additions and 8 deletions
				
			
		Update table names to new format
				commit
				
					
					
						fe0765795a
					
				
			
		| 
						 | 
				
			
			@ -16,13 +16,13 @@ public function guestbookPost(Request $request) {
 | 
			
		|||
            'message' => 'required'
 | 
			
		||||
        ]);
 | 
			
		||||
 | 
			
		||||
        $matching_bans = DB::select('SELECT reason FROM guestbook_bans WHERE ip_address = ?', array($request->ip()));
 | 
			
		||||
        $matching_bans = DB::select('SELECT reason FROM guestbook__bans WHERE ip_address = ?', array($request->ip()));
 | 
			
		||||
 | 
			
		||||
        if (count($matching_bans) > 0 ) {
 | 
			
		||||
            return view('errors.guestbook-ipban')->with('reason', $matching_bans[0]->reason);
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        DB::insert('INSERT INTO guestbook_entries (name, timestamp, ip_address, agent, message) values (?, ?, ?, ?, ?)', array(
 | 
			
		||||
        DB::insert('INSERT INTO guestbook__entries (name, timestamp, ip_address, agent, message) values (?, ?, ?, ?, ?)', array(
 | 
			
		||||
            htmlspecialchars($request->get('name')),
 | 
			
		||||
            time(),
 | 
			
		||||
            $request->ip(),
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,7 +2,11 @@
 | 
			
		|||
@section('title', 'guestbook')
 | 
			
		||||
@section('content')
 | 
			
		||||
    @php
 | 
			
		||||
        $entries = DB::select('SELECT id, name, timestamp, message FROM guestbook_entries ORDER BY id DESC');
 | 
			
		||||
        $entries = DB::select('
 | 
			
		||||
            SELECT id, name, timestamp, message
 | 
			
		||||
            FROM guestbook__entries
 | 
			
		||||
            ORDER BY id DESC
 | 
			
		||||
        ');
 | 
			
		||||
    @endphp
 | 
			
		||||
    <h1>Entries <small>({{ count($entries) }} total)</small></h1>
 | 
			
		||||
    @foreach ($entries as $entry)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -5,7 +5,7 @@
 | 
			
		|||
@php
 | 
			
		||||
    $categories = DB::select('
 | 
			
		||||
        SELECT id, name
 | 
			
		||||
        FROM bookmark_categories
 | 
			
		||||
        FROM bookmark__categories
 | 
			
		||||
        ORDER BY priority ASC
 | 
			
		||||
    ');
 | 
			
		||||
@endphp
 | 
			
		||||
| 
						 | 
				
			
			@ -15,7 +15,7 @@
 | 
			
		|||
    @php
 | 
			
		||||
        $sites = DB::select('
 | 
			
		||||
            SELECT name, url, description
 | 
			
		||||
            FROM bookmark_sites
 | 
			
		||||
            FROM bookmark__sites
 | 
			
		||||
            WHERE category_id = ? ORDER BY priority ASC
 | 
			
		||||
        ', array($category->id));
 | 
			
		||||
    @endphp
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -43,7 +43,11 @@
 | 
			
		|||
    </ul>
 | 
			
		||||
    <hr/>
 | 
			
		||||
    @php
 | 
			
		||||
        $entries = DB::select('SELECT name, timestamp, message FROM guestbook_entries ORDER BY id DESC');
 | 
			
		||||
        $entries = DB::select('
 | 
			
		||||
            SELECT name, timestamp, message
 | 
			
		||||
            FROM guestbook__entries
 | 
			
		||||
            ORDER BY id DES
 | 
			
		||||
        ');
 | 
			
		||||
    @endphp
 | 
			
		||||
    <h1>Entries <small>({{ count($entries) }} total)</small></h1>
 | 
			
		||||
    @foreach ($entries as $entry)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -60,7 +60,7 @@
 | 
			
		|||
    }
 | 
			
		||||
 | 
			
		||||
    $id = request()->input('id');
 | 
			
		||||
    $entry = DB::table('guestbook_entries')->find($id);
 | 
			
		||||
    $entry = DB::table('guestbook__entries')->find($id);
 | 
			
		||||
 | 
			
		||||
    if ($entry) {
 | 
			
		||||
        // Render a confirmation view
 | 
			
		||||
| 
						 | 
				
			
			@ -78,7 +78,7 @@
 | 
			
		|||
    }
 | 
			
		||||
 | 
			
		||||
    $id = request()->input('id');
 | 
			
		||||
    DB::table('guestbook_entries')->where('id', $id)->delete();
 | 
			
		||||
    DB::table('guestbook__entries')->where('id', $id)->delete();
 | 
			
		||||
 | 
			
		||||
    return back()->with('success', 'Entry deleted successfully!');
 | 
			
		||||
});
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue