137 Posted Topics
Re: Another student who left it last minute | |
I got everyone in the chat hooked, so here: http://orteil.dashnet.org/cookieclicker/ | |
Re: I don't understand what you're asking, your design is pretty close to the actual outcome. | |
Re: TBH Meta tags are a bit dated and pointless, I'd suggest investing time in social interactivity. | |
Re: Where are you livestreaming from? YouTube? Twitch? Your own server? | |
Re: What is your page? It looks like a non-closed or open <script> tag | |
Re: Google doesn't instantly update, it needs re-crawling. | |
Re: 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. … | |
Re: A simple google search finds this: http://www.scriptiny.com/2009/05/javascript-popup-box/ | |
Re: 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? | |
Re: It is the placement of SEO related keywords on a page. | |
Re: You could create your own. It really isn't hard to make your own 4shared :) http://php.net/manual/en/features.file-upload.php | |
Re: 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 … | |
Re: 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. | |
Re: 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 … | |
Re: 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. | |
Re: 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 | |
![]() | |
Re: Also, checkout thenewboston for video tutorials on languages as a whole. Read the documentation on the frameworks in general. | |
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 … | |
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() { … | |
Re: Spammy links won't help your SEO. Even on .edu links. You have been lied to. | |
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, … | |
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. … | |
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 | |
Re: 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. | |
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 … | |
Re: 90% of the time it isn't the themes fault. Try reading the documentation first. Please mark as solved | |
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 … | |
Re: Using the post Priaeas posted is a start. Sometimes your webhost will have the installation packet too. | |
Re: 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. | |
Re: You're probably better off using Webmaster Tools. Not indexing seperately. That way you can find out why it isn't being indexed etc. | |
Re: 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 | |
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 … | |
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 … | |
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 … | |
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 … | |
Re: 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 | |
Re: I would look at this if it wasn't a download, please post the code snippets ;) | |
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", … | |
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 … | |
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). … ![]() | |
Re: I don't understand what you mean? Can you try and explain it better ![]() | |
Re: hindu, add <span> tags around what you want to write and do the css around that. | |
Re: In your HTML I can't see you actually echoing the mail_status? | |
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 … |
The End.