137 Posted Topics

Member Avatar for syasya
Member Avatar for bradly.spicer
Member Avatar for AARTI SHRIVAS
3
117
Member Avatar for davy_yg

I don't understand what you're asking, your design is pretty close to the actual outcome.

Member Avatar for davy_yg
0
130
Member Avatar for Ravi Rajput

TBH Meta tags are a bit dated and pointless, I'd suggest investing time in social interactivity.

Member Avatar for bradly.spicer
0
170
Member Avatar for ZAINUKHALID
Member Avatar for SirMahlon
Member Avatar for oliversmith
Member Avatar for trendykarthick
0
211
Member Avatar for pawan768

I have a feeling you're getting a 'wordpress' account and your sites wordpress account mixed up. Try logging in with a wordpress account which is associated with your website. 1. Go to your site 2. Go to the admin 3. Open Jetpack 4. Authorise it 5. Go to manageWp.com 6. …

Member Avatar for pawan768
0
318
Member Avatar for NitsPatel
Member Avatar for davy_yg

A simple google search finds this: http://www.scriptiny.com/2009/05/javascript-popup-box/

Member Avatar for bradly.spicer
0
55
Member Avatar for BraithVince

This doesn't actually make much sense. So you need to search for a code snippet or you need to search for actual code which does the job of finding data in a different table?

Member Avatar for happygeek
0
68
Member Avatar for Ravi Rajput
Member Avatar for anis rehman
0
97
Member Avatar for davy_yg

You could create your own. It really isn't hard to make your own 4shared :) http://php.net/manual/en/features.file-upload.php

Member Avatar for pzuurveen
0
85
Member Avatar for marietta_kan

My suggestion is similar to sinhakuaurabh, Wipe the database. It really is a pain to mess with a pre-structured database unless you know what you're doing. Otherwise it sounds like the database is either incomplete or half of it in the settings area is pointing to another domain so it's …

Member Avatar for AARTI SHRIVAS
0
166
Member Avatar for daniel.leowteckleong

You know, I wish I had done a programming class. I really do. I wasn't lucky enough to get into that as my area doesn't provide it. Congratulations for ruining your own education. Harsh but true.

Member Avatar for bradly.spicer
0
309
Member Avatar for shelexelex

Hey Shel, it's quite simple really :) So lets say in your database you have 3 columns. customer_name,postcode and mainarea. What the code below does is create a table with headers (hence the echo <Th>) and then it uses [fetch_object()](http://php.net/manual/en/mysqli-result.fetch-object.php) to create objects of each header and display them! All …

Member Avatar for bradly.spicer
0
318
Member Avatar for patk570

You could always make your own, there is plenty of tutorials. If not I would highly suggest moving away from Joomla and to something a bit better.

Member Avatar for patk570
0
210
Member Avatar for thuku

Not really sure why you have the two seperate anyway, Wordpress can be manipulated to work like a CMS. You coud possibly make a program which integrates the two databases and does a checkup every 1-2 hours posting the changes

Member Avatar for thuku
0
191
Member Avatar for iamthwee
Member Avatar for best4earn

Also, checkout thenewboston for video tutorials on languages as a whole. Read the documentation on the frameworks in general.

Member Avatar for jkon
0
297
Member Avatar for Robonte
Member Avatar for bradly.spicer

Hey guys, So close to the end with this! function JobBoard_admin_edit() { echo "<h4> edit </h4>"; ?> <form name="jobboard_form" method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>"> <?php echo '<select name="ID">'; $con_edit= mysqli_connect("localhost", "profiled_job","", "profiled_jobboard") or die(mysql_error()); $sql="SELECT ID,Employer FROM details"; $result =mysqli_query($con_edit,$sql); $employer_id = $_POST['ID']; while ($data=mysqli_fetch_assoc($result)) { echo …

Member Avatar for pzuurveen
0
190
Member Avatar for bradly.spicer

Hey everyone, Having a few problems: 1. It's not populating the dropdown with all the entries (But in the delete function it is, which is a somewhat copy) 2. It doesn't post the Employer name, the result I'm getting is "Editing user: *BLANK*" Here is the code: function JobBoard_admin_edit() { …

Member Avatar for pritaeas
0
158
Member Avatar for arifunlucky13
Member Avatar for tareqjhe1
0
74
Member Avatar for bradly.spicer

Hey guys, Got this wordpress script which is bugging out for me :/ function JobBoard_admin_add() { ?> <div class="wrap"> <?php $con=mysqli_connect("localhost","profiled_job","","profiled_jobboard"); // Check connection if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); } $sql="INSERT INTO details (Employer, LearningProvider, ContractedProvider, LearningDeliverySite, VacancyDescription, VacancyTitle, EmployerDescription, VacancyLocation, NoVacancies, VacancyRefNumber, …

Member Avatar for broj1
0
249
Member Avatar for bradly.spicer

Hi again, Using a web script to show the servers I have, which are working here: http://www.bradlyspicer.net/ServerStatus-master/index.php Trying to add it into wordpress. And this is happening: http://www.bradlyspicer.net/server-status/ Saying it is down and saying N/A etc. If I go to http://www.bradlyspicer.net/wp-content/themes/twentyeleven/index_server.php it works. If I go to http://www.bradlyspicer.net/server-status/ it doesn't. …

Member Avatar for bradly.spicer
0
228
Member Avatar for bradly.spicer

Hey guys, just a quick one. Got this: $memmath = $memcache + $memfree; $memmath2 = $memmath / $memtotal * 100; $memory = round($memmath2) . '%'; Which finds the % free. How would I find the % used? Been messing with algorithms and I'm screwed in the head now

Member Avatar for bradly.spicer
0
104
Member Avatar for evan.winstead.7

The term you are looking for is Voxel. And they are usually made in Java because of the easy to code mechanics, free libraries and allows for launchers etc with updates.

Member Avatar for evan.winstead.7
0
236
Member Avatar for bradly.spicer

Hey guys, Had a problem with Wordpress. When I click submit on a form for a plugin I made it says "insufficient permissions" So I can see that being a problem. I decided it might be best to use PHP_SELF. Just a question really. At the moment it is 3 …

Member Avatar for bradly.spicer
0
142
Member Avatar for Shikha_1
Member Avatar for unikorndesigns

90% of the time it isn't the themes fault. Try reading the documentation first. Please mark as solved

Member Avatar for bradly.spicer
0
260
Member Avatar for bradly.spicer

Hey guys, got this weird error. I have 3 divs. Each with different forms in. Div 1 and Div 2 work fine, they sit next to each other no errors. But div 3 doesn't exist apparently. I'm unsure of where it has moved or why it's deleted. Picture: http://puu.sh/3yDRM.png As …

Member Avatar for bradly.spicer
0
278
Member Avatar for davidkroj

Using the post Priaeas posted is a start. Sometimes your webhost will have the installation packet too.

Member Avatar for RH-Calvin
0
143
Member Avatar for vngeanceFPS

To be fair Vbulletin isn't bad if you use the right plugins to prevent spam etc. But then it becomes a nucience. These spam bots search for Vbulletin code. So you're better off writing your own forum or using something open source.

Member Avatar for Ancient Dragon
0
230
Member Avatar for Edupark

You're probably better off using Webmaster Tools. Not indexing seperately. That way you can find out why it isn't being indexed etc.

Member Avatar for crescendo
0
46
Member Avatar for jLamp

There is actually a fair bit of help out there for this subject. You want to $Post the data to your database and then send that $post content in an email using something like this: http://php.about.com/od/phpapplications/ss/form_mail.htm

Member Avatar for crescendo
0
213
Member Avatar for bradly.spicer

Hey guys, Got a load of computers at work and I want to neaten the system up a bit. I'm completely oblivious to this area :P Basically I have 9 machines and I want them to all be slaves of 1 machine which in turn will not allow people to …

Member Avatar for Ketsuekiame
0
118
Member Avatar for bradly.spicer

hey guys, I've been working on that moodle database link and I have it somewhat working! I have it logging in and echoing the username. This is the login section: $query = "SELECT * FROM moodle_user WHERE username = '{$_POST['username']}' AND password = '$password'"; $result = mysqli_query($con,$query) or die(mysqli_error($con)); //setup …

Member Avatar for bradly.spicer
0
130
Member Avatar for bradly.spicer

Hey all, Been trying to work this out. But I'm stumped! Got a database running on Moodle. Want to create an external script which uses the usernames and passwords from the table moodle_user and the db Profiled_Moodle. Here is my page so far: <?php include 'header/config.php';?> <div id="Container"> <?php if …

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

Just a quick question really, I'm using a database which is for Moodle, and I want to extract the login details for an Android app I am writing so they can login to that database and See their information. Part of it is in PHP... so it's Java > PHP …

Member Avatar for LauraLemana
0
141
Member Avatar for mallows.yum

Are you looking to export the whole database to excel or just a specific part, if it's the whole thing it would be easier to look at CSV downloading. You can select specific parts but it might take a tad longer :P

Member Avatar for Webville312
0
195
Member Avatar for abhi10kumar
Member Avatar for abhi10kumar
0
280
Member Avatar for bradly.spicer

Hi, Been working on this PHP snippet and it was fine until I changed one line. I am doing this inside Wordpress so I can't echo the problems out. "Server error" Hopefull you guys can see where my snippet has gone wrong :)) <?php //Create connection //new mysqli("localhost", "user", "password", …

Member Avatar for bradly.spicer
0
142
Member Avatar for bradly.spicer

hey all, Just a quick one (I hope). I've only ever really done this as a button from something simple like a drop down box. I have a table which is populated by a mysql db: echo "<table class=\"gridtable\" cellpadding=\"0\" cellspacing=\"0\"> <tr> <th>Employer</th> <th>Vacancy</th> <th>Vacancy Type</th> <th>NoVacancies</th> <th>Learning Provider</th> <th>Contact …

Member Avatar for bradly.spicer
0
159
Member Avatar for bradly.spicer

Hi all, Having a small issue with some PHP i'm re-writing. I'm converting my old mysql to Mysqli for a new project. my database is called "jobboard" my table is called "details". The Idea is to have a drop down and then select the persons name (Which has the ID). …

Member Avatar for diafol
0
228
Member Avatar for rajqpt
Member Avatar for hindu times
Member Avatar for AARTI SHRIVAS
Member Avatar for klaragold
Member Avatar for klaragold
0
148
Member Avatar for bradly.spicer

Hey everyone, Got this little snippet here: <?php // did files get sent if(isset($_FILES) && (bool) $_FILES) { // define allowed extensions $allowedExtensions = array("pdf","doc","docx"); $files = array(); // loop through all the files foreach($_FILES as $name=>$file) { // define some variables $file_name = $file['name']; $temp_name = $file['tmp_name']; // check …

Member Avatar for bradly.spicer
0
159

The End.