Search found 13 matches

by jarrodatt
Sun Apr 19, 2015 1:03 am
Forum: Tutorials
Topic: Delete posts/comments in Blog
Replies: 4
Views: 1880

Re: Delete posts/comments in Blog

Ok I think I got the link thing figured out by using: function runMyFunction() { delete_comment($_GET['delete']); } if (isset($_GET['delete'])) { runMyFunction(); header("Location: " . $_SERVER["HTTP_REFERER"]); } <a href="blog_read.php?delete=<?php echo $comment['cid']; ?>&...
by jarrodatt
Sat Apr 18, 2015 8:01 pm
Forum: Tutorials
Topic: Delete posts/comments in Blog
Replies: 4
Views: 1880

Re: Delete posts/comments in Blog

Sorry for the long delay, Life happened... Anyway, so I got this far hope i did it close anyway (posts.inc.php). function delete_post($post_id){ $pid = (int)$post_id; $sql = "DELETE FROM `posts` WHERE `post_id` = {$post_id}"; $post = mysql_query($sql); //$post = mysql_fetch_assoc($post); /...
by jarrodatt
Thu Jan 29, 2015 2:38 am
Forum: Tutorials
Topic: Delete posts/comments in Blog
Replies: 4
Views: 1880

Delete posts/comments in Blog

Hello,
I created my blog following your tut; However, How do add the ability to delete a post or comment without going through phpmyadmin.?

Thank you for great great tut's.

blog site: http://bearlyconnected.com/blog/index.php
by jarrodatt
Sun Oct 19, 2014 10:47 pm
Forum: Tutorials
Topic: Basic Template System
Replies: 0
Views: 2547

Basic Template System

Hello,

How would I integrate a forum software into this system?
or
Could you do a tut on a basic simple forum that is easy to do this?

I'm not looking for fancy just basic like this:

http://bearlyconnected.com/index.php?page=forum It's just a single php file forum with mysql backend
by jarrodatt
Mon Jan 20, 2014 4:38 am
Forum: Tutorials
Topic: Video site local
Replies: 1
Views: 6281

Video site local

Hello, Can someone help or know the answer to this, I have a media server at home and if possible Like to stream media from server to devices. ps3 xbox one wii etc.... The problem is xbox one lost the ability to search for server and play media. So I was thinking streaming through web browser just l...
by jarrodatt
Wed Dec 25, 2013 5:22 am
Forum: Tutorials
Topic: Pagination
Replies: 1
Views: 1634

Pagination

Hello, So I created a db with user_name and user_email, So I can manually add and delete records that display. How can i set it so when index page comes up with list of names it also links email so just hovering over and/or clicking link (name) it shows email or opens email client to to: already fil...
by jarrodatt
Wed Dec 04, 2013 4:03 am
Forum: Tutorials
Topic: PHP Tutorial: Minecraft Server Information (No Plugins Neede
Replies: 19
Views: 5107

Re: PHP Tutorial: Minecraft Server Information (No Plugins N

Hello, I'm still having some issues with utf8 stuff. array(3) { [0]=> string(20) "Minecraft Adventure�" [1]=> string(2) "0�" [2]=> string(2) "20" } I'm still getting the triangles. here's my mc.inc.php code: [syntax=php]<?php function fetch_server_info($ip, $port){ $soc...
by jarrodatt
Thu Mar 21, 2013 2:13 am
Forum: PHP
Topic: minecraft server information tut
Replies: 1
Views: 534

minecraft server information tut

Hello, Quick Question, I followed the tut to the letter I've triple checked it but I still get funky chars: array(3) { [0]=> string(29) "SomethingCraft Public Server�" [1]=> string(2) "9�" [2]=> string(3) "100" } mc.somethingcraft.co.uk Status: Online motd: SomethingCra...
by jarrodatt
Wed Mar 20, 2013 2:39 am
Forum: PHP
Topic: Doom2 server query
Replies: 4
Views: 834

Re: Doom2 server query

I've triple checked and all is ok but after 3 days of searching I,m getting closer here's what i have so far just basic:
http://bearlyconnected.com:81/serv_doom.php

Stupid udp ports.
by jarrodatt
Sat Mar 16, 2013 9:25 pm
Forum: PHP
Topic: Doom2 server query
Replies: 4
Views: 834

Re: Doom2 server query

Yes i'm doing it locally, I run zandronum for server and yes ports are open on router and firewall. i found this reference page of flags but dont know where to begin in using them: http://wiki.zandronum.com/Launcher_protocol I found a 3rd party app "LGSL" at http://www.greycube.com/site/ne...
by jarrodatt
Sat Mar 16, 2013 5:55 pm
Forum: PHP
Topic: Doom2 server query
Replies: 4
Views: 834

Doom2 server query

Hello, Sorry if this is in wrong area, I was wondering if you or someone could do a tut on php querying a doom2 server as I can't figure it out I have been doing some tut from this site its a wonderful learning tool for me at least. The biggest issue is that I can't get the socket to do anything UDP...
by jarrodatt
Thu Sep 27, 2012 1:12 am
Forum: Suggestions
Topic: Download with Progress Bar
Replies: 2
Views: 1968

Download with Progress Bar

Hello Everyone, What I'm trying to do is: Utilizing the progress bar tuts, is incorporate it so in my download section when a user clicks a link to download a file, maybe a popup is activated to show either file being cached or straight download with the progress bar. Any help would be greatly appre...
by jarrodatt
Wed Sep 26, 2012 2:08 am
Forum: Suggestions
Topic: File Download Script in PHP
Replies: 8
Views: 3254

Re: File Download Script in PHP

Please help I'm trying to incorporate your progress bar into a way to click on a link and show progress while either downloading or loading file.... this is the only forum i found that delt with downloads sorry if its the wrong one.