137 Posted Topics

Member Avatar for cdays

You're obviously not looking hard enough. There is plenty of free forum software out there.

Member Avatar for diafol
-2
182
Member Avatar for daniel36

if it's swapping month and day (sorry I skipped the code) then try looking at the format inside your db?

Member Avatar for diafol
0
165
Member Avatar for bradly.spicer

Hey all, Been re-writing the HTAccess for the Moodle software which comes as standard. This is the code I have so far: # BEGIN Moodle <IfModule rewrite_module> #Fixes Moodle issue with redirection on shared servers Options Indexes FollowSymLinks +IncludesNOEXEC RewriteEngine On RewriteCond %{HTTP_HOST} ^domain\.co.uk RewriteRule ^(.*)$ /Moodle/$1 #Redirects lowercase to …

Member Avatar for Squidge
0
116
Member Avatar for joshl_1995

It could be your host. Do you have access to the Cpanel? Try moving hosts?

Member Avatar for joshl_1995
0
224
Member Avatar for lukas.vandendijssel

Going to explain the above post more. basically all your doing is stopping your php, doing html and re-entering php. PHP like many languages has the ability to jump in and out using tags <?php echo'//Functionhere' ?> As long as you open and close properly it's fine. You can also …

Member Avatar for bradly.spicer
0
316
Member Avatar for TheBrick

Hi there, I'd like to say firstly, don't stop. You obviously have a nack for it. I would suggest looking into getting some extra qualifications with C++, as your in the UK maybe try getting some MTAs? Also working for yourself is all fine and dandy but you have to …

Member Avatar for TheBrick
0
232
Member Avatar for bradly.spicer

Hey all, Just some questions regarding queries and the logic behind what I'm trying to achieve. So basically, I have these rows of information inside a MSQL table called Customers. The columns are as follow: id customer_name customer_name_letterhead customer_notes systype status signaltype verification address postcode telephone mobile mobiletwo email mainarea …

Member Avatar for Squidge
0
130
Member Avatar for dashawk

Just a hunch here, have you tried doing update rather than delete? So do an if statement (If none are checked then UPDATE to '')

Member Avatar for dashawk
0
281
Member Avatar for bradly.spicer

Hey guys, Was speaking to pritaeas and suggested him this site: http://thecodeplayer.com He said I should mention it to you, it's really interesting and to be honest quite a good site for reads.

Member Avatar for Sahil89
2
44
Member Avatar for amweasel

You'l find that certain databases are good for one thing and not so much the other. Give MYSQL a go. It's really not that bad

Member Avatar for amweasel
0
196
Member Avatar for bradly.spicer

Hey guys, got a system here which I'l try and explain in lame mans terms. Search > Customer page > Edit Customer. The problem I am having is that it is not letting me carry that ID over. E.g, I put John smith in, I get the customer Page which …

Member Avatar for bradly.spicer
0
158
Member Avatar for DamzWildfire
Member Avatar for broj1
0
428
Member Avatar for bradly.spicer

Hey guys, as part of my project I am trying to make it so each record in my database has it's own page in a fashion similar to: http://domain.com/Customer.php?customer_name="John Doe" And this will echo all the information in the table about John Doe. (In the future I would like to …

Member Avatar for LastMitch
0
124
Member Avatar for bradly.spicer

Hey, I have a form on this website: http://we-remortgage.co.uk/sitewp/ When I look at the get quote button it has duplicated itself. I can't see the reasoning behind this and was wondering if you guys could help. This happens only in IE Form Stylesheet: /* Generic Form CSS */ .formFeatureBox { …

Member Avatar for bradly.spicer
0
113
Member Avatar for bradly.spicer

Hey, Been writing my own php snippet but I'm having a few issues. I have a drop down which is populated by the mysql db however when I click delete it runs an action and throws an error. Form: <form action="deleteuserform.php"> <select> <?php $sql="SELECT id,customer_name FROM Customers"; $result =mysql_query($sql); while …

Member Avatar for remunance
0
238
Member Avatar for bradly.spicer

This isn't so much a help thread more of a discussion. I have this idea that once I have a lot of users in a database that I can then grab them from a drop down and place them into the template like a webpage etc which can be printed …

Member Avatar for diafol
0
45
Member Avatar for bradly.spicer

Hey all, Recently been working on a website which now looks REALLY good in FF and Chrome however in IE it looks absolutely terrible... is it possible to make it so anyone who goes to the site on Internet explorer is automatically taken elsewhere? like a new directory? Thanks

Member Avatar for bradly.spicer
0
197
Member Avatar for bradly.spicer

Hey, http://we-remortgage.co.uk/sitewp/ I'm trying to make the form to the right actually clickable however it seems like something is in the way. Can anyone locate the issue? Thanks!

Member Avatar for bradly.spicer
0
81
Member Avatar for bradly.spicer

Working on this site and now i'm majorly annoyed it isn't working. <div id="Mid_Content"> <div id="Left_Content"> <h2>heading </h2> <p> test </div> <div id="Mid_point_Content">asdasd</div> <div id="Right_Content">Form</div> </div> Mid_Content is a container and the rest inside it. Here is the CSS #Mid_Content { Width: 1000px; } #Left_Content { width: 33%; } Mid_point_Content …

Member Avatar for bradly.spicer
0
2K
Member Avatar for bradly.spicer

Hey all, Looking for some quick guidance, Trying to make it so that I can have a field which presents how many customers the database has. E.g This is the DB: http://prntscr.com/o2vuf This is my php: <?PHP $id_customers = "SELECT id FROM Customers"; $Customeramount = mysql_query($id_customers) or die(mysql_error()); echo $Customeramount; …

Member Avatar for bradly.spicer
0
206
Member Avatar for bradly.spicer

Hey, I've been messing around with SQL And PHP recently and I've come into another problem which has blown all logic out for me. I have this form: System Type <select name="systype"> <option value="systype1">type1</option> <option value="systype2">type2</option> <option value="systype3">type3</option> <option value="systype4">type4</option> <option value="none" selected="selected">None</option> </select><br> This form will send whatever is …

Member Avatar for bradly.spicer
0
132
Member Avatar for bradly.spicer

<?PHP $time = $_POST['Time'];//The things in the [] can be anything you want, but remember these for later $xp = $_POST['X']; if($time <= 0) $time = 0; if($xp <= 0) $xp = 0; $db_handle = mysql_connect($server, $user_name, $pass_word); $db_found = mysql_select_db($database, $db_handle); if ($db_found) { $SQL = "SELECT * FROM …

Member Avatar for bradly.spicer
0
178
Member Avatar for nuramin75
Member Avatar for bradly.spicer

hey guys, Having a few problems with div tags and I can't quite put my finger on it. I have 3 div tags, 1 for the header, 1 for slider and one for the logo. http://element.minepress.co.uk/ However, the slider has just pushed itself off the screen? any suggestions? Thanks!

Member Avatar for bradly.spicer
0
36
Member Avatar for bradly.spicer

Hey all, Selecting a MYSQL Database is throwing Errors. It's all correct. However, My page seems to think otherwise.. <?php ################### Server Connection / CONST ###################### define('DB_NAME', 'xtrapsp_Rhino'); define('DB_USER', 'xtrapsp_rhino'); define('DB_PASSWORD', 'Password'); define('DB_HOST', 'localhost'); ################################################################## // Note that whatever is enclosed by $_POST[""] matches the form input elements // $Value_name …

Member Avatar for bradly.spicer
0
146
Member Avatar for bradly.spicer

Hello everyone, My friend has been helping and he's been great however it's come to a halt :P I'm working with MYSQL at the moment but am having a few issues with my code. Index.php: <html><link href="stylesheet.css" rel="stylesheet" type="text/css"> <head> </head> <body> <div id="header"><img src="http://www.rhinosecurityltd.co.uk/templates/rhuk_milkyway/images/mw_joomla_logo.png" alt="Rhino Security"> </DIV> <form name="Form" …

Member Avatar for bradly.spicer
0
177
Member Avatar for bradly.spicer

Hey all. I FINALLY GOT MY PLUGIN TO *WORK*. Apart from one element... <?php /* Plugin Name: Minepress Minecraft Dynmap Plugin Plugin URI: http://minepress.co.uk Description: Minepress Minecraft Dynmap Plugin Author: Bradly spicer Version: 0.0.1 Author URI: http://minepress.co.uk */ /*Installation of Plugin */ /* What to do when the plugin is …

Member Avatar for LastMitch
0
173
Member Avatar for dbalas
Member Avatar for dbalas
0
772
Member Avatar for bradly.spicer

Hello, I'm looking into making an account validator for wordpress which runs off a validator for another server. Shown here: http://www.minecraftwiki.net/wiki/User:Oxguy3/Minecraft.net_API It's running in Wordpress and I just wanted to ask for your opinions on how to do this. The idea I had is that the username they signed up …

Member Avatar for bradly.spicer
0
124
Member Avatar for bradly.spicer

Hey guys! So I've been working on a plugin which allows people to add an iframe depending on the input fields and then that is displayed when a shortcode is created. However It isn't making it a shortcode. <?php /* Plugin Name: Minepress Minecraft Dynmap Plugin Plugin URI: http://minepress.co.uk Description: …

Member Avatar for bradly.spicer
0
303
Member Avatar for bradly.spicer

OK! so I got this code working, HostGator ended up allowing my sockets etc and it worked!!! However this lead to more problems... <?php /* Plugin Name: Server Status Plugin URI: http://minepress.co.uk Description: Server Status Plugin Author: Bradly spicer Version: 1.0.0 Author URI: http://minepress.co.uk */ class ServerStatus extends WP_Widget { …

Member Avatar for bradly.spicer
1
309
Member Avatar for samuelmax

This has no context to it Samuel. Pinging overall in SEO actually sends Google a message about the page/site. So if a Search Engine is pinged it will then go to the page pinging it and check for updates to be crawled :) http://pingomatic.com/ http://pingler.com/

Member Avatar for Icone
0
139
Member Avatar for remixedcat
Member Avatar for micheal.burns1

1. Make better content 2. Hyperlink words to the relevent content. 3. Having outbound links to other sites does help ranking 4. What experience do you actually have with SEO?

Member Avatar for micheal.burns1
0
150
Member Avatar for rahul2112
Member Avatar for bradly.spicer
0
47
Member Avatar for bradly.spicer

Hello, I'm posting again regarding as to why my php code won't process the delete.php Index.php: <div id="DeleteFile"> Delete A Script: <form action="delete.php"> </html> <? $path = "uploads/"; $handle = opendir($path); echo '<select>'; while ($file = readdir($handle)) { if (substr($file,0,1) != ".") { echo "<option value ='$file'>$file</option>"; } } echo …

Member Avatar for adam.adamski.96155
0
218
Member Avatar for bradly.spicer

Hey everyone, Been working on a php snippet which finds the names of all the files in a Directory and populates them into a drop down box. Which would then allow me to select that file, click a submit button and delete them. Here is what I have SO <?php …

Member Avatar for bradly.spicer
0
217

The End.